Hi
We use the following statement to write into log file…
%put ERROR: Dataset contains duplicate records.
Is there a way that I can write same on the listing file….
Thanks
Hello,
%put macro statement only writes to the log. You can try generating a data _null_ statement with a put data step statement.
Hello,
%put macro statement only writes to the log. You can try generating a data _null_ statement with a put data step statement.
CAN YOU GIVE ME AN EXAMPLE......
Hi:
Here's an example. See attached screen shot. There's also a free e-lecture on the topic: SAS Training in the U.S. -- SAS Report Writing 1 e-Lectures: Additional Topics (Creating Data Step Reports with the LISTING Destination).
cynthia
data _null_;
x=4;
if x<5 then ;
%put Error:dataset has duplicates;
run;
Why not use proc printto to save the LOG into a listing file ?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.