Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TABLE title

Status
Not open for further replies.

nobyrnes

Programmer
Mar 20, 2007
15
IE
Hey,
I have a proc tabulate with 3 cols of different vars. And I want to be able to add a single row on the top of the table that spans the entire width of the table, and I want to center text within it.

Proc tabulate data=C_Data.dataplot;
Var Num_Loans Customer_number total_nla_per_cust_open;
Table customer_number=' '*n='Num Customers'*f=comma9.0
Num_loans=' '*sum='Num Loans'*f=comma9.0
total_nla_per_cust_open=' '*sum='Original Value'*f=bmk.;
run;

Example of output:

ALL CREDITLINK CUSTOMERS
Num Num Original
Customers Loans Value
xxxx xxxxx xxxxx
 
I don't think that you can do this. I believe you can do something similar to this in Proc Report, but not tabulate.

Chris
Business Analyst, Code Monkey, Data Wrangler.
SAS Guru.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top