help with if formulas

R

rvnwdr

I think that this is fairly simple but I still need help. Could anyon
tell me what formula to use if I want to have column d show me a valu
of 8 if the value of column c is greater then 5 hrs but show me a valu
of 0 if the column c is less then 5 or blank?

Thank
 
M

mangesh_yadav

=IF(C1>5/24,8,0)

format the result as time. If C1 has 5 hrs as integer 5, do not divid
by 24.

Manges
 
Top