HLookup and how it works

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

Guest

I am currently designing a timesheet template so that it will automatically
dissect total hours worked into Ordindary Hours (max 7.6hr per day, Time&Half
next 3 hrs, and the balance will be Double time). I'm not sure which would be
the best function to assist. I have used the=IF function but there are
flaws. Can anyone suggest which function woulb be more appropraite? Thanks
 
Hi!

A2 = hours worked for the day

B2 = Ordindary Hours:

=MIN(ISNUMBER(A2)*A2,7.6)

C2 = Time&Half:

=MIN(3,A2-B2)

D2 = Double time:

=A2-B2-C2

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top