BookmarkSubscribeRSS Feed
Kp1234
Fluorite | Level 6

Proc content output 

 

# Variable Type Len Format12543
aChar31 
bChar8 
cNum8PERCENT10.
dNum8PERCENT10.
eNum8PERCENT10.

 

I am trying to add a value to the last row of the dataset which is the mean value. 

 

My code:
proc sql;
select mean(c)*100 into :orr_pct from Efficacy;

select mean(d)*100 into :orrc_pct from Efficacy;
select mean(e)*100 into :dcr_pct from Efficacy;
insert into eff_all2(Cohort_new, N, c, d,e)
values ("Total","&ne_allt",put(&orr_pct,8.2),put(&orrc_pct,8.2),put(&dcr_pct, 8.2));

quit;

I get an error: 
Error: proc sql; 237 insert into eff_all2 238 values ("Total", &ne_allt, put(&orrc_pct, 8.2), put(&orr_pct, 8.2), put(&dcr_pct, 8.2)); ___ _ 22 200 202 ERROR 22-322: Syntax error, expecting one of the following: a quoted string, a numeric constant, a datetime constant, a missing value, ), +, ',', -, MISSING, NULL, USER. ERROR 200-322: The symbol is not recognized and will be ignored. ERROR 202-322: The option or parameter is not recognized and will be ignored.

The put command keeps giving me error. 
When i insert without the put value i get the output but the decimal pint is mi

2 REPLIES 2
AhmedAl_Attar
Rhodochrosite | Level 12

@Kp1234 

Couple of things to keep in mind.

  1. The PUT function/statement converts numeric to character. Therefore when you try populate a numeric column/field with a character value you'll get an error!
  2. Macro variables are typically treated as character variables

 

Try this code 

proc sql;
   select 
     put((mean(c)*100),8.2)
    , put((mean(d)*100),8.2)
    , put((mean(e)*100),8.2)
   into :orr_pct, :orrc_pct, :dcr_pct
   from Efficacy;
   insert into eff_all2(Cohort_new, N, c, d,e)
   values ("Total","&ne_allt",&orr_pct,&orrc_pct,&dcr_pct);
quit;
Tom
Super User Tom
Super User

Let's work backwards here.

 

First thing is that the VALUES clause wants actual VALUES and not EXPRESSIONS.

So if C,D and E are NUMERIC variables then do this  The number of decimal places in the value inserted makes no difference.  .80 and .8 are the exact same number.

insert into eff_all2(Cohort_new, N, c, d,e)
values ("Total","&ne_allt",&orr_pct,&orrc_pct,&dcr_pct);

If the C, D and E are character variables like COHORT_NEW and N then you need to add quotes around the values. 

insert into eff_all2(Cohort_new, N, c, d,e)
values ("Total","&ne_allt","&orr_pct","&orrc_pct","&dcr_pct");

Note that if you could have used an expression then the PUT() function would have only worked if C, D and E were CHARACTER variables because formats always generate CHARACTER strings.

 

What type of numbers are original C, D and E values?  Why did you multiple they mean by 100?  The PERCENT format expects actual percentages as the values.  So 50% would be the number 0.50.  If you multiply by 100 and the display it with the PERCENT format you will get 5000% instead of 50%.

 

Finally why the heck are you generating the macro variables at all?

proc sql;
insert into eff_all2(Cohort_new, N, c, d,e)
select "Total","&ne_allt",mean(c),mean(d),mean(e) 
  from Efficacy
;
quit;

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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