I need to concat the date information with the file name, however during concat the date variable changes to sas or hexadecimal format. Thanks Gowri
Use the Format statement to convert to text:
a = today();
b = format(a, "mmddyyyy");
print(b);
Yields the result:
"05232012"
thanks, This was exactly what i was looking for!!