I need some help converting a SAS dataset into a specific Text file format
The ideal format for the text files would be:
All files should be in text format with each line of data ended with a {CR}{LF} character pair.
All fields REGARDLESS OF TYPE should be encapsulated in double quotes and separated by a single comma.
Any date values should be in the form “YYYY-MM-DD”.
Header and trailer records are not required.
Below is an example record of the output type I need:
"56979","GCR011","3882","Actual","2010-10-31","179.09"
"45153","GCR011","3000","Actual","2011-01-31","75.80"
Within the dataset dates and numerics are formatted as date and numeric variables.
Thanks in advance
... View more