IF Function Help, Please:)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need the IF function to add up two cells and if the sum is greater than or
equal to 80, then the cell needs to read "80," if the sum is less than 80 I
just want it to show whatever number it calculates (79 and below).

This is for a timesheet with overtime.

Thank you for your help!!
 
Use: =IF(Cell1+Cell2<=80,Cell1+Cell2,80)

The syntax: =IF(some result equals or is less than 80, TRUE: the result,
FALSE: show 80)
 
Back
Top