I have empty rows in SAS after I imported an .xls
file.
I'm using the following code but it is not working.
I'm trying to delete all the empty rows.
DATA PROJECT.CLEAN_DATA1;
set PROJECT.merged_data;
if missing(coalesceC(of _character_)) and missing(coalesce(of_numeric_)) then delete;
run;
Please help!