BookmarkSubscribeRSS Feed
riya275
Obsidian | Level 7
proc report data= c1.o;
columns probability____  probability____=opp Total_Media_Value Forecasted_Budget ;
define probability____ / group descending 'Probability';
define Total_Media_Value / SUM 'Total Budget' format= dollar30. ;
define Forecasted_Budget/ computed 'Forecasted Budget'format= dollar30.;
compute Forecasted_Budget;
Forecasted_Budget= (Total_Media_Value.sum)*(probability____);
endcomp;
define opp/n 'Num_of_optys';
rbreak after/ ol summarize style=[backgroundcolor= grrp color=aliceblue ];
title 'London Olympic Pipeline As of 17th November 2012';
run;

Here in the report , in the last line where summary is given,  i get  a missing value for the column Foretasted Budget (computed variable). How to fix this?

1 REPLY 1
snoopy369
Barite | Level 11

Can you show example data that shows the problem?  I don't see it in an example dataset such as here:

 

proc report data=sashelp.class;
columns sex height weight bmi;
define sex/group;
define height/analysis mean;
define weight/analysis mean;
define bmi/computed;
compute bmi;
  bmi = (weight.mean/2.3)/((height.mean/39)**2);
endcomp;
rbreak after/ol summarize;
run;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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 lock in 2025 pricing—just $495!

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
  • 1 reply
  • 1020 views
  • 0 likes
  • 2 in conversation