Link to home
Start Free TrialLog in
Avatar of LuckyLucks
LuckyLucks

asked on

Formatting proc tabulate

Hi I have the following code in sas . I would like to create multiple tables like this one but one main title and then each table with its own subtitle. Is there a way i can do this?

Also, i need to remove the date and run information that is presented adjacent to title by default.


data mydata;
input id txn;
datalines;
01 10 
02 11 
03 111 
;;
run;

proc tabulate data=mydata missing;
class id;
var txn ;
table id ALL, (SUM=''*txn='Sum of txn' MEAN=''*txn='Mean of txn' N=''*txn='Count of txn') / ROW=FLOAT;
TITLE1 'SECTION ONE';
TITLE2 'FIRST TRANSACTIONS'
run

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of tobey1
tobey1
Flag of United States of America 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
to get ride of the date and page number use the following:
option nodate nonumber;