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.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.