Writing my first program here. I have a csv file that I'm importing into SAS and then doing subsequent calculations to etc. Thanks to klaz2002 I know how to convert a char date to a SAS date. Now that I have my dataset made I am adding columns to it etc. I figure the best way to do this is to make a new dataset.
data work.converteddata;
set work.importedcsv;
newcolumn1 etc. etc.
run;
Is this what you would do, or would you convert the imported dataset?
data work.converteddata;
set work.importedcsv;
newcolumn1 etc. etc.
run;
Is this what you would do, or would you convert the imported dataset?