
Suzanne O. answered 02/08/22
International Experience and Multiple State Certifications
Hi Martins,
Your question:
Is there a Excel formula that after a certain value is reached surplus value is shown.
There is more than one way to skin this cat. But let's Keep It Simple:
I would use 3 columns:
- Total Hours (the actual hours worked)
- Adjusted Hours (reports either actual hours or stops at 7.5 hours)
- Surplus Hours (reports either 0 or a surplus)
For formulas:
- Total Hours = whatever you already have in place is fine
- Adjusted Hours =IF(C3<=7.5;C3;7.5) assuming Total Hours is in Column C Line 3 (adjust as needed to match what you have)
- Surplus Hours =C3-D3 again, adjust for your columns and lines
The nice part here is that you do not lose the original data and you can change your cap values as things change.
Su
Martins G.
Hi, Great answer. I applied it right away, and as you said, perfect that I can keep the original data. Thank you for your help, I appreciate it02/09/22