Hi,
I'm trying to see if I can create a flag variable for values with indentations and no indenation?
thanks
Not yet checked but I think you want something like that
data want;
set have;
If substr(LABEL,1,1)=' ' then i=1;
else i=0;
run;
For the indented variables, is the first character a blank? If so, you can use the SUBSTR function:
https://support.sas.com/resources/papers/proceedings/proceedings/sugi25/25/cc/25p088.pdf
Not yet checked but I think you want something like that
data want;
set have;
If substr(LABEL,1,1)=' ' then i=1;
else i=0;
run;
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.