ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How do I limit formula results to positive only? (https://www.excelbanter.com/excel-worksheet-functions/263542-how-do-i-limit-formula-results-positive-only.html)

mathjegna

How do I limit formula results to positive only?
 
I am working a drivers logbook formula for 80 hours in 7 days with a reset to
zero when a driver has a day off.
My problem is when the day off resets the hours to zero the next calculation
is giving me a negative number of hours.
I am using the formula =IF(F110,G10+F11-F4,0) where F11 is the current work
day G10 is the previous total hours and F4 is the hours from 7 days prior.
The problem is on day F12 if the hours worked are less than F5 the cell
records a negative number and then uses it in the following calculations.
I need to limit the time to positive only, how do I get the cell value to
remain zero if the formula provides a negative result?

Luke M[_4_]

How do I limit formula results to positive only?
 
how about:

=IF(F110,MAX(0,G10+F11-F4),0)

--
Best Regards,

Luke M
"mathjegna" wrote in message
...
I am working a drivers logbook formula for 80 hours in 7 days with a reset
to
zero when a driver has a day off.
My problem is when the day off resets the hours to zero the next
calculation
is giving me a negative number of hours.
I am using the formula =IF(F110,G10+F11-F4,0) where F11 is the current
work
day G10 is the previous total hours and F4 is the hours from 7 days prior.
The problem is on day F12 if the hours worked are less than F5 the cell
records a negative number and then uses it in the following calculations.
I need to limit the time to positive only, how do I get the cell value to
remain zero if the formula provides a negative result?




Paul C

How do I limit formula results to positive only?
 
Use two conditions as follows:

=IF(AND(F110,G10+F11-F40),G10+F11-F4,0)
--
If this helps, please remember to click yes.


"mathjegna" wrote:

I am working a drivers logbook formula for 80 hours in 7 days with a reset to
zero when a driver has a day off.
My problem is when the day off resets the hours to zero the next calculation
is giving me a negative number of hours.
I am using the formula =IF(F110,G10+F11-F4,0) where F11 is the current work
day G10 is the previous total hours and F4 is the hours from 7 days prior.
The problem is on day F12 if the hours worked are less than F5 the cell
records a negative number and then uses it in the following calculations.
I need to limit the time to positive only, how do I get the cell value to
remain zero if the formula provides a negative result?


Brad

How do I limit formula results to positive only?
 
Another solution
=IF(F110,max(0,G10+F11-F4),0)

Success - click yes...

--
Wag more, bark less


"mathjegna" wrote:

I am working a drivers logbook formula for 80 hours in 7 days with a reset to
zero when a driver has a day off.
My problem is when the day off resets the hours to zero the next calculation
is giving me a negative number of hours.
I am using the formula =IF(F110,G10+F11-F4,0) where F11 is the current work
day G10 is the previous total hours and F4 is the hours from 7 days prior.
The problem is on day F12 if the hours worked are less than F5 the cell
records a negative number and then uses it in the following calculations.
I need to limit the time to positive only, how do I get the cell value to
remain zero if the formula provides a negative result?


Peo Sjoblom[_3_]

How do I limit formula results to positive only?
 
The IF part is obsolete.

--


Regards,


Peo Sjoblom


"Luke M" wrote in message
...
how about:

=IF(F110,MAX(0,G10+F11-F4),0)

--
Best Regards,

Luke M
"mathjegna" wrote in message
...
I am working a drivers logbook formula for 80 hours in 7 days with a reset
to
zero when a driver has a day off.
My problem is when the day off resets the hours to zero the next
calculation
is giving me a negative number of hours.
I am using the formula =IF(F110,G10+F11-F4,0) where F11 is the current
work
day G10 is the previous total hours and F4 is the hours from 7 days
prior.
The problem is on day F12 if the hours worked are less than F5 the cell
records a negative number and then uses it in the following calculations.
I need to limit the time to positive only, how do I get the cell value to
remain zero if the formula provides a negative result?







All times are GMT +1. The time now is 06:03 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com