Help

Re: Removing negative numbers/stop count a 0 for workday_diff formula

Solved
Jump to Solution
1409 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Millie_Symns
4 - Data Explorer
4 - Data Explorer

Hello!

I have a formula to count how many workdays are left between a data and “today” and when the reference data is “after today”, the output returns a negative number (as it should).

I am looking for a way to get my formula to only return “0” when that situation occurs. I haven’t figured out the nested if statement logic to make it work. Does anyone have a solution to this?

Thank you!

1 Solution

Accepted Solutions
Kamille_Parks
16 - Uranus
16 - Uranus

Without seeing your actual formula, sounds like you could just do the following:

MAX(0, *whatever your formula currently is*)

See Solution in Thread

2 Replies 2
Kamille_Parks
16 - Uranus
16 - Uranus

Without seeing your actual formula, sounds like you could just do the following:

MAX(0, *whatever your formula currently is*)

Yes, that works. Thank you!