Online File
Rick Aster: Professional SAS Programming Secrets: Contents
* Professional SAS Programming Secrets Program 14i COMPUTE block *; ods html file="future-events.html"; proc report data=work.future nowd noheader; column date city sponsor sponsor_web confirmed validate; define date / order format=date9. order=internal; define sponsor_web / display noprint; define confirmed / display noprint; define validate / computed noprint; compute validate; if not confirmed then sponsor = ''; if sponsor ne '' and sponsor_web ne '' then call define('sponsor', 'url', sponsor_web); endcomp; run; ods html close;