Hi all SAS Users,
Today I found that in my data, there is one dataset that the compressed increases pages of data (dataset want), so I decided to set it be no compress
My code is as below
proc transpose data=want out=currency (rename=(col1=ex_rate _name_=CURCDD)) (compress=no);
by datadate;
var AUD--ZWD;
run;
The log is as below
68 69 proc transpose data=want out=currency (rename=(col1=ex_rate _name_=CURCDD)) (compress=no); _ 22 200 ERROR 22-322: Syntax error, expecting one of the following: ;, DATA, DELIM, DELIMITER, INDB, LABEL, LET, NAME, OUT, PREFIX, SUFFIX. ERROR 200-322: The symbol is not recognized and will be ignored.
Could you please help me to sort it out?
Warm regards.
Put all of the dataset options into the same group.
(rename=(col1=ex_rate _name_=CURCDD)
compress=no
)
Put all of the dataset options into the same group.
(rename=(col1=ex_rate _name_=CURCDD)
compress=no
)
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.