I have a csv file which has 6 variables - Day, HIgh, Low, Precip, Snow, and SnowDepth. In the CSV file the date displays as 1-Jan-2018, and if I make Day a character variable it reads in the same way, but I cannot do any manipulations with it, as it isn't in a SAS defined format. Is there a way in SAS that I can change the format, or do I have to go to the CSV file and change all of my dates (although none of the options are SAS agreeable either)? 1-Jan-2018 -11.9 -24 0 0 2.99 2-Jan-2018 -0.9 -23.1 0 0 2.99 libname Adam '/home/adamrowland0';
data Adam.Final;
infile "/home/adamrowland0/sasuser.v94/Stat 510 Final Data Set.csv" dsd;
input Day $
High
Low
Precip $
Snow $
SnowDepth $;
run; Thank you for any help you can provide. Adam
... View more