I have a situation where if a given condition is met I want to take action, but if it is not met, I don't want to do anything. The line item is of type number and setting it to 0 is not a viable option for the ELSE side. So how can I code "do nothing"?
Thanks in advance!
POST adds, it does not replace.
so you an do it. However the logical choice if to check the same condition on the formula where you POST and not do it.
I agree with you and that is what I was trying to do: if condition then post(x,y) else "do nothing"
OR: if not condition then "do nothing" else post(x,y)
Replacing "do nothing" by 0 does not work, so back to my original question: how to "do nothing"?