The print option has no effect if you are creating a table. PROC SQL will only print when you select but no table is created, eg Proc SQL ; Select * from have ; quit ; We use Proc SQL Noprint when we want to create a macto variable but do not need print output ; Proc SQL noprint ; Select value into :macvalue from have ; quit ; Richard in Oz
... View more