BookmarkSubscribeRSS Feed
amar8580
Calcite | Level 5

hi all

i am new to sas

i have been trying to create a report using this code but its not working properly

proc report data=work.test;

columns product state city;

define product /group;

define state /across

define city /across;

run;

results come out as

                              california     new jersey       los angeles     trenton

product 1

whereas i want the output to look like this

                              california           new jersey

                              los angeles         trenton

product 1

any idea how i achieve that

i want the across one underneath the other so it looks like grouping and not one after the other

1 REPLY 1
ballardw
Super User

I don't do will with nesting in proc report which it looks like you may be doing. If the only thing you are looking for are simple counts and may have multiple cities per state then I would try proc tabulate:

proc tabulate data=work.test;

     class product, state, city;

     tables product, state*city*n=''*f=best8.;

run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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