How do I split a specific list in a column into individual items?
Let's say I have the columns Time and Greetings, and I want to split whatever is in Greetings for Time = PM.
Assume you don't know how many items will be on the list - greetings for PM could be 1, 2, 3, 4, 5+ etc. items long
Whatever is in Greetings is being referenced by another variable i.e. For PM, list in Greetings is from &PM_items.
where &PM_items. contains "Bye", "Adios", "Goodbye", "See you" - though these items can change.
Before:
Time Greetings
AM "Hello", "Hi", "Good morning"
PM "Bye", "Adios", "Goodbye", "See you"
Any "How are you"
After:
Time Greetings
AM "Hello", "Hi", "Good morning"
PM1 "Bye"
PM2 "Adios"
PM3 "Goodbye"
PM4 "See you"
Any "How are you"
/* Maybe something like my attempt at the code? */
Data want;
Set have;
If PM ^= ""
For i.&PM_items. to last.&PM_items.
do;
&PM_items&i.
next i;
end;
Then output;
Run;
No macros needed.
Use COUNTW to determine the number of words.
Use SCAN() to separate into components.
Your logic is close:
n_words = countw(....);
Do I=1 to n_words;
Word = scan(....);
OUTPUT;
end;
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.