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;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.