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 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