Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 13
Program 13e
Flexcode TITLE statement


*
  Professional SAS Programming Secrets
  Program 13e
  Flexcode TITLE statement
*;

proc summary data=work.perfect;
   var t;
   output out=work.range min(t)=min max(t)=max;
run;
data _null_;
   set work.range;
   call symput('TITLEMIN', put(min, best6.));
   call symput('TITLEMAX', put(max, best6.));
   stop;
run;
title1 'Perfect Summary';
title2 "From &TITLEMIN. to &TITLEMAX.";

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections