Dear all,
When I try to import the attached xls file, I get the empty O column....how knows why? how I get rid of it?
Many thanks
Roger
Something must have been typed in it at some point.
Just drop it:
proc import out=TABLE(drop=O) ...
proc import datafile='/folders/myfolders/health_exam_results.xls'
out=have
replace
dbms=xls;
range='health_exam_results$A1:N100';
run;
The "WHY" in a bit more detail than @ChrisNZ mentions is that if a column or row in Excel has a value entered in a cell and then the value is deleted Excel "remembers" the column or row has been used. So when you ask Excel to tell you what is in the data via Proc Import it tells the data linkage that column has data.
You might also want to check for entire rows at the end of your data set without values.
@ballardw that was a very good explanation. I just created new excel sheet and no issues so far. Even i was having blank columns while importing because i highlight whole row.
After creating new excel , everything is okay.
many thanks for explaining WHY?
regards
Sandeep
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.