BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Geo-
Quartz | Level 8

 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);

 

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star
3 REPLIES 3
SASKiwi
PROC Star

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.

Geo-
Quartz | Level 8

sorry.I was running on a Korean version and log was not in English...I am wondering this problem is  more about SAS syntax?

SASKiwi
PROC Star

I think you might have to add the PCTLPRE = option to your OUTPUT statement as well:

https://documentation.sas.com/?docsetId=procstat&docsetTarget=procstat_univariate_syntax21.htm&docse...

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1437 views
  • 0 likes
  • 2 in conversation