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 ?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.