Hi,
In one of my data set I have 37 numeric columns out which, one numeric column is in date format.
My requirement was to replace all the null values(.) from the data set with zeros and I had used the following array
data liab_asset1;
set liab_asset;
array v(*) _numeric_;
do i = 1 to dim(v);
if v(i) = . then v(i) = 0;
end;
drop i;
run;
But this statement replaces all the null fields from the date field also. If i dont want to do any action on the date field how should I write the query..?
Please help..!!