BookmarkSubscribeRSS Feed
zetter
Calcite | Level 5

How do I  proc tabulate from  multiple tables but report results on a single table?

I have got 3 tables like this:

Table A

Id      item   opinionscore

11        car      1

12        car      3

Table B

Id      item   opinionscore

11        plate     1

12       plate     1

Table c

Id      item   opinionscore

11        cup     1

12       cup 4

I want to create a combined by proc tabulate and report on excel as follows.

Item

Total Score

car

4

plate

2

cup

5

total

11

1 REPLY 1
Reeza
Super User

You'll have to combine the tables somehow first or combine the results at the end, I'd suggest combining the tables first. You could also create a view if your tables are big and you don't want to take up the storage space.

data all;

set tablea tableb tablec;

run;

And then run your proc tabulate Smiley Happy

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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