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;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →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.