I am reading this post about setting all missing values of a dataset to 0.
However, it seems that it only apply to datasets with numeric data types only. What if I have data with character and numeric data types at the same time? I cannot declare an array like array a(*) _numeric_;
or array a(*) _character_;
, and it seems that using ALL is not acceptable in arrays. What is the appropriate ways to get around it then?