BookmarkSubscribeRSS Feed
danwarags
Obsidian | Level 7

Hello Everyone,

 

I have a dataset with country, sales, formulation as variables. There are numerous observations for each country and formulations (Drug1, Drug2, Drug3 etc). I want to create a table summing up the sales data by unique country and formulation. For example I need the output table as shown below

 

 Drug1Drug2Drug3
EU Total448564,575
Austria53947 657
India1078857
Bulgaria7017920
Newzealand291-- 653
UK23640 456
Denmark25723425
Estonia3,772456 456
1 REPLY 1
Jagadishkatam
Amethyst | Level 16
could you please provide sample data of how it looks

May be proc summary like below, could help you
proc summary data =sampledata ;
class country ;
var drug1 drug2 drug3 ;
output out = Sumry sum= ;
run;
Thanks,
Jag
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
  • 1048 views
  • 0 likes
  • 2 in conversation