What adjustment to the following code could lead to carry out the same only under some specific condition?
ODS CSV FILE = "F:\Temp\Test.csv";
PROC PRINT data=WORK.FINALDATA;
run; quit;
ods _all_ close;
In other words, how to have the Test.csv generated only if desired, i.e. judged on the basis of the value of a variable. For example if a macro variable CSVFORM possess the value of 1 or above only then the Test.csv would be generated otherwise only the remaining code would be carried out but Test.csv would not be made.
Thanx in advance.