I am trying to find multiples of ten between two variables. The way the edit is written is:
| CommittedBalance should not be multiple of 10 from prior quarter. For example, the prior quarter was 10 and the current quarter was 100. 100 / 10 = 10. |
I'm not sure how to check this. Is there a way to manipulate the mod(current,prior) function for this?
Cheers,
Mark
Not sure I have fully understand your questions, is it like this?
if mod(current/prior,10)=0;
The mod function with a result of 0 only would tell you that the value was A multiple of the prior, could be any .
If you have the values easily to compare then
if current = 10* prior then <what ever>;
would work.
I guess something like:
flag = CommittedBalance ne lag(CommittedBalance) and
(mod(CommittedBalance / lag(CommittedBalance), 10) = 0 or
mod(lag(CommittedBalance) / CommittedBalance, 10) = 0);
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.