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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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