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?
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.