Jan 03 2023 06:47 AM
Hello,
I know how to get the first result of 5000. What I'm trying to figure out is if the two numbers I am subtracting goes below a certain threshold to make the result 0.
Let's say the top number is 18000 and the variable number is <14500 then I want the solution to be 0. However, if the answer is between 13000 and 14499 then I want the actual number to be the solution.
Is this possible to formulate?
Thank you in advance for your time.
Chad
Jan 03 2023 06:57 AM
Jan 03 2023 07:06 AM
SolutionJan 03 2023 07:08 AM
Jan 03 2023 08:01 AM
Have you changed the problem? Your example seem to conform more to
In that case, a simpler formula would do
= IF(variable#<bound, top - variable#, 0)
Jan 03 2023 08:16 AM
Jan 03 2023 08:25 AM
Jan 03 2023 07:06 AM
Solution