this is my program :
data_null_;
filename abcd 'c:/sample.csv';
set sample;
file abcd;
delimiter=' ,' dsd 1rec1=350;
if _n_=1
then do ;
put ' date '
'name'
'location'
end;
put date
name
location
;
run;
in output date variable appears as 1045 instead of 001045 .
Open the file with a text editor and you'll see the leading zeroes.
Excel is trying to be smart and removing the 0's.
You can also view this by opening Excel and then importing the data rather than opening the file directly with Excel. The import wizard will allow you to specify variable type - character rather than numeric.
I don't understand your question. What role does PROC IMPORT play in the process?
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.