Hi,
Has anyone used this option? I think I'm following the syntax but apparently not. What I have is:
ods pdf id=1 file="&path.test1.pdf";
ods pdf id=2 file="&path.test2.pdf";
what I'm getting back is:
136 ods pdf id=1 file="&path.test1.pdf";
--
79
ERROR 79-322: Expecting a (.
136! ods pdf id=1 file="&path.test1.pdf";
----
79
ERROR 79-322: Expecting a ).
137 ods pdf id=2 file="&path.test2.pdf";
--
79
ERROR 79-322: Expecting a (.
137! ods pdf id=2 file="&path.test2.pdf";
----
79
ERROR 79-322: Expecting a ).
?
Thanks!
--Ben
Try this:
ods pdf (id=1) file="pdf1.pdf"; ods pdf (id=2) file="pdf2.pdf";
Try this:
ods pdf (id=1) file="pdf1.pdf"; ods pdf (id=2) file="pdf2.pdf";
Wow. Sure didn't read that into the syntax requirement. But it was right there. Thanks!
--Ben
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.