Hello
I want to convert sas data set into summary report (Two -way summary report).
The summary report should NOT aggregate any value and just display it
Required summary report
What is the way to do it please?
data have;
input cat1 $ cat2 $ value;
cards;
a 1 10
a 2 20
a 3 30
b 1 40
b 2 50
b 3 60
c 1 70
c 2 80
c 3 90
;
Run;