Hi all,
Today I wrote this code
If (ccc > 365) or (s5> 365) or (s8>365) or (dpo >365) then delete;
I am wondering if there is any chance to shorten this code because 365 repeated many times.
Warm regards.
For that condition to be true then at least one of those variables has to be larger then 365. Which means the max() of those variables has to be larger than 365.
If max(of ccc s5 s8) > 365 then delete;
For that condition to be true then at least one of those variables has to be larger then 365. Which means the max() of those variables has to be larger than 365.
If max(of ccc s5 s8) > 365 then delete;
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.