+ Reply to Thread
Results 1 to 3 of 3

Hours multiplied by money

  1. #1
    Eileen
    Guest

    Hours multiplied by money

    I'm sure somebody knows this one. I need to get my hours worked when not
    complete hours to multiply by a number that represents the hourly pay; what
    is the formula when Excel counts 30 mins as .30 of an hour?

  2. #2
    Forum Expert
    Join Date
    09-09-2005
    Location
    England
    MS-Off Ver
    2007
    Posts
    1,500
    Mod(decimal hours,1) will get you part hour
    if this is divided by 0.6 you will get your decimal minutes
    so multiply this by the hourly rate

    if minutes in cell A1 and rate is in b1
    mod(a1,1)/0.6*b1 will work out the payment


    if hours and minutes are in A1

    (int(a1)+mod(a1,1)/0.6)*b1 will work out the payment

    Regards

    Dav

  3. #3
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,786
    Quote Originally Posted by Eileen
    I'm sure somebody knows this one. I need to get my hours worked when not
    complete hours to multiply by a number that represents the hourly pay; what
    is the formula when Excel counts 30 mins as .30 of an hour?
    Don't you want 30 minutes to convert to 0.5?

    If you have time worked in hh:mm format in A1 and hourly rate in B1

    =A1*B1*24

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1