Nested if statement that adds

TerylFields

New Member
Joined
Dec 3, 2013
Messages
8
Hello Board, I need I think a nested if statement that adds overtime. I have 5 columns and 25 rows. Each row has a field that calculated 5 different column of time to figure out overtime. Any of the 5 cell that hold hours over 40 need to calculate the over 40 number as overtime. The formula needs to check all 5 cells and if any of them are over 40 hours do the calculation and add all 5 cells and place that number in 1 cell. example If week 1 is 43 with 3 hours overtime, and week 2 has 47 with 7 hours overtime and the remaining week with 40 hours. Then I need a formula that will check all the cell and calculate the number of overtime hour time the rate of pay with is located in one of the cell in the beginning of the row. I tried a nested if but it didn't add all the cell with overtime together so maybe a nested if is not what I need. Please help, this formula would save a lot of time....Thanks in advance
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
this is a bit clunky - and i'm sure there is a better way

=SUMIF(A1:E1,">40")-(COUNTIF(A1:E1,">40")*40)
so its adding up the cells that are over 40 hours
and then also counting those cells for each cell over 40 and subtracting

so if you have three cells over 40 it will sum those 3 cells including each of the 40 hours
now we need to subtract each of those 40
so a count * 40 will do that
 
Upvote 0
Hi

Or :-
Code:
=SUMPRODUCT(--(A1:E1>40),--(A1:E1-40))

adjust columns accordingly.

hth
 
Upvote 0

Forum statistics

Threads
1,215,457
Messages
6,124,941
Members
449,197
Latest member
k_bs

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top