Hello ,
May you help me to check how I should correct the following Macro statements? &med cannot provide me the correct value. 😞
%let medlist = %str("cisplatin" ; "carboplatin"; "paclitaxel" ; "paclitaxel protein-bound" ; "pemetrexed disodium" );
%let med = %scan(&medlist, 4, ";") ;
%put &medlist &med ;
Thank you,
Ivy
Hi.
Remove the " around ;
%let med = %scan(&medlist, 4, ;) ;
The third argument of the SCAN function is a list of characters considered to be separators, any of them will be identified as a separator.
If you want to remove the quotes around the item use dequote function, like this:
%let med = %sysfunc(dequote(%scan(&medlist, 4, ;))) ;
More on the SCAN function here: http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214639.htm
Hope it helps.
Daniel Santos @ www.cgd.pt
Hi.
Remove the " around ;
%let med = %scan(&medlist, 4, ;) ;
The third argument of the SCAN function is a list of characters considered to be separators, any of them will be identified as a separator.
If you want to remove the quotes around the item use dequote function, like this:
%let med = %sysfunc(dequote(%scan(&medlist, 4, ;))) ;
More on the SCAN function here: http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214639.htm
Hope it helps.
Daniel Santos @ www.cgd.pt
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.