Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 14
Program 14d
Data step ODS table of SAS data set


*
  Professional SAS Programming Secrets
  Program 14d
  Data step ODS table of SAS data set
*;

ods listing close;
ods html file="planet1.html";
data _null_;
   set work.planet;
   file print ods;
   put _ods_;
run;
ods html close;
ods listing;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections