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
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.