Forum Discussion

Sam_French's avatar
Sam_French
Copper Contributor
Mar 01, 2023
Solved

Remainder of 40 in one column to another Column

Hello!    I hope someone can help. I'm working with time cards and making a spreadsheet. I have an employees total hours in Column E and would like any hours over 40 to go into Column F (for overti...
  • SergeiBaklan's avatar
    SergeiBaklan
    Mar 01, 2023

    Sam_French 

    If no formula in E and value appears here by some magic way, I'd suggest to add two columns, with regular hours and overwork

    Regular:
    =IF(E2<=40,E2,40)
    
    Overwork:
    =MAX(0, E2-40)

Resources