Anyone knows what's wrong with "PCTLPTS" here?I want to print 10%,20%...to max.
How to fix?
%macro get(type);
proc univariate data=comp_acct_change;
var dif_&type._amt;
output out=p_dif_&type._amt PCTLPTS=0 to 100 by 10;
run;
%mend;
%get(purc);
I think you might have to add the PCTLPRE = option to your OUTPUT statement as well:
When posting a problem provide as much evidence as you can. In this case you haven't provided a SAS log of your program including any notes and errors. Also run your program with this statement: options mprint; It will make it easier to find where it is going wrong.
sorry.I was running on a Korean version and log was not in English...I am wondering this problem is more about SAS syntax?
I think you might have to add the PCTLPRE = option to your OUTPUT statement as well:
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.