Hi,
I wish to create a new variable Newcode using conditions and "Contains" instruction.
Considering the example here attached the variable Newcode has to satisfy this condition :
if (ateco81='830' or ateco81='982') and (ateco91='93020' or ateco91='93021') and (attsoc contains "PArrucch*" or "Barbier*")) then Newcode ='999';
Obviously this instruction doesn't work. Can you give me any suggestion?
Thanks
Stefania
Version SAS 9.4
As usual there is more than one way to do this. The quickest would be to use the FIND function:
if find(string, substr) > 0 then ...
Alternatives are the INDEX function and Perl Regular Expressions (PRX) functions.
Hope this helps,
- Jan.
As usual there is more than one way to do this. The quickest would be to use the FIND function:
if find(string, substr) > 0 then ...
Alternatives are the INDEX function and Perl Regular Expressions (PRX) functions.
Hope this helps,
- Jan.
Please supply code as advised in https://communities.sas.com/t5/help/faqpage/faq-category-id/posting?nobounce, and example data in data steps with datalines (a macro for converting your data to data steps is found in https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat...)
Posting Excel files automatically reduces the number of potential helpers, as many of us won't (or even can't, by organizational policies) download MS Office files from the web.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.