Skip to Main Content
Base SAS 9.4 Procedures Guide, Third Edition
book

Base SAS 9.4 Procedures Guide, Third Edition

by SAS Institute
August 2014
Intermediate to advanced content levelIntermediate to advanced
2218 pages
209h 16m
English
SAS Institute
Content preview from Base SAS 9.4 Procedures Guide, Third Edition
CALL DEFINE statement options
STYLE
STYLE/MERGE
Other features: TITLE statement
Details
This example uses PROC REPORT to create a table that uses the STYLE/MERGE
option in the CALL DEFINE statement.
Program
proc report data=sashelp.class;
col name sex age height weight;
define name--weight / display;
compute sex;
if sex = 'M' then
call define('name', "style", "style=[background=cyan]");
endcomp;
compute age;
if age > 13 then
call define('name', "style/merge", "style=[color=red]");
endcomp;
title "Using STYLE/MERGE Style with PROC REPORT";
run;
Program Description
Specify the cell width for all the columns in the ODS output. By default, the
REPORT procedure ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Base SAS 9.4 Procedures Guide, Second Edition

Base SAS 9.4 Procedures Guide, Second Edition

SAS Documentation
Oracle® Database 10g Insider Solutions

Oracle® Database 10g Insider Solutions

Arun Kumar R., John Kanagaraj, Richard Stroupe

Publisher Resources

ISBN: 9781629593043