Hi!
I have string values with
Cycle 1 Day 1
Cycle 1 Day 15
Cycle 2 Day 1
.
.
Cycle 23 Day 1
Cycle 23 Day 15
I want to output 'Day 1' observations regardless of cycle. Using index, is outputting a Day 15's as well since it 'contains' Day 1.
data want
set have
if index(visit, "Day 1") then do;
cycle = input(scan(VISIT, 2), 3.);
end;
if cycle ne '' ;
run;
Help is appreciated!
Why not just grab the number at the end using SCAN(string, 4) and check if that equals 1?
Why not just grab the number at the end using SCAN(string, 4) and check if that equals 1?
Or try
if findw(visit, "Day 1") then ...
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.