BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sss
Fluorite | Level 6 sss
Fluorite | Level 6

Hi,

I have Excel file,Raw_data sheet contains the raw data and output sheet contains the desired output i am looking for.

I want to transpose the dataset, but i am not able to do that with normal trans pose procedure.

Now for example, For autos variable i have total 4 row with 1 as value and the count will be 4. Next total price will be 2.11.

similarly i want to Three variable auto , book, Intent which have count and total price for the.

The raw data and output is attached.

Will be very kindful for your help.

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

One way to do it with SQL is:

proc sql;

create table output as

select "Autos" as Query, sum(autos*DSQ) as DSQsum, sum(autos*price) as PriceSum from have

union all

select "Intent", sum(Intent*DSQ), sum(Intent*price) from have

union all

select "Book", sum(Book*DSQ), sum(Book*price) from have;

select * from output;

quit;

PG

PG

View solution in original post

2 REPLIES 2
PGStats
Opal | Level 21

One way to do it with SQL is:

proc sql;

create table output as

select "Autos" as Query, sum(autos*DSQ) as DSQsum, sum(autos*price) as PriceSum from have

union all

select "Intent", sum(Intent*DSQ), sum(Intent*price) from have

union all

select "Book", sum(Book*DSQ), sum(Book*price) from have;

select * from output;

quit;

PG

PG
sss
Fluorite | Level 6 sss
Fluorite | Level 6

Thank u PGStat. Smiley Happy it works

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
  • 2 replies
  • 1210 views
  • 0 likes
  • 2 in conversation