Link to home
Start Free TrialLog in
Avatar of morinia
moriniaFlag for United States of America

asked on

Using Proc Tabulate in SAS

Experts,

i have the following code that I am using for a Proc Tabulate:

PROC TABULATE DATA=TOTAL_EDITS;
          CLASS  EDIT;
      TABLE n(EDIT);
RUN;

My question is the results go across.  Is there a way to have the results which show the number of edits within each edit to go down so it is esier to read.
ASKER CERTIFIED SOLUTION
Avatar of Ian
Ian
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial