Hi, I'm trying figure out how to get just certain figures to return from a tabulate proc. Here's what I'm running:
proc tabulate data=sortdate;
where portalstatusyn=1 and catorg < 5;
class catorg LLOdiff30;
table catorg*(n rowpctn) all*(n pctn),
LLOdiff30 all;
title 'PROC TABULATE output';
run;
And this is a sample of what I'm getting:
Last logon > 30days
0 1 All
Organization
1 N 4.00 3.00 7.00
RowPctN 57.14 42.86 100.00
2 N 1.00 13.00 14.00
RowPctN 7.14 92.86 100.00
What I need is to just have a report of the RowPct of column 1 and the N from column All for each organization. Any help appreciated. I'm just getting started here.
proc tabulate data=sortdate;
where portalstatusyn=1 and catorg < 5;
class catorg LLOdiff30;
table catorg*(n rowpctn) all*(n pctn),
LLOdiff30 all;
title 'PROC TABULATE output';
run;
And this is a sample of what I'm getting:
Last logon > 30days
0 1 All
Organization
1 N 4.00 3.00 7.00
RowPctN 57.14 42.86 100.00
2 N 1.00 13.00 14.00
RowPctN 7.14 92.86 100.00
What I need is to just have a report of the RowPct of column 1 and the N from column All for each organization. Any help appreciated. I'm just getting started here.