+ Reply to Thread
Results 1 to 14 of 14

How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

  1. #1
    Registered User
    Join Date
    12-09-2016
    Location
    Southampton, UK
    MS-Off Ver
    2016
    Posts
    5

    How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    Hi all, new to this forum, I have been using Excel as a basic user for many years, but have had no formal training. =sum is about as far as I go!

    I run a small taxi business, and I am just about to have two drivers join the business, and I have created a basic spreadsheet that calculates the split in the receipts (they get 40% of the total takings, less tips and extras, I receive 60%, less the cost of fuel). I would like to pay the drivers a guaranteed minimum of £45 per shift, averaged over the shifts that they work each week. For example, if they work three shifts, and take £80, £100 and £150 (for example - total £330), I would like Excel to automatically calculate the amount that they should receive based on a £45 minimum averaged over the week (40% of £330 is £132, but 3 x £45 is £135, so Excel would show their pay as £135 not £132. I hope that that makes sense! I'm thinking the IF command might feature somewhere, but I haven't used this command before.

    If this needs to be posted on the commercial side, that's fine, if so please advise how many points I would need to get help. Thanks in advance everybody!

    Brian

  2. #2
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.84 (24041420))
    Posts
    8,753

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    yes , probably an IF or MAX / MIN ()
    however, if you could upload a sample sheet - then we could assist and give you a formula with correct cell reference
    Wayne
    if my assistance has helped, and only if you wish to , there is an "* Add Reputation" on the left hand side - you can add to my reputation here

    If you have a solution to your thread - Please mark your thread solved do the following: >
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  3. #3
    Forum Expert
    Join Date
    02-14-2009
    Location
    .
    MS-Off Ver
    ................
    Posts
    2,840

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    General answer only, a copy of your worksheet would help to give a detailed answer.

    The MAX() function can be used to return the Max value of a range of numbers. For example, if your sheet contains the following values:

    A B
    1 Shifts 3
    2 Receipts 330
    3 Rate 0.4
    4 Min Payment 45
    5
    6 135

    Then the formula

    =MAX(B4*B1, B2*B3)

    in B6 will return 135.

    (Yep, I know I could have organised that data better)

  4. #4
    Registered User
    Join Date
    12-09-2016
    Location
    Southampton, UK
    MS-Off Ver
    2016
    Posts
    5

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    I'm sorry, I don't know how to upload to this forum, clicking on the file attachment icon above just gives me a blank box I can't do anything with...

  5. #5
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.84 (24041420))
    Posts
    8,753

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    To attach a file to your post,
    click "Go advanced" (next to quick post),
    scroll down until you see "manage Attachments",
    click that and select "Choose File" (top Left corner).
    Find your file, click "Open" click "upload" click 'close windows" Top Right. click "Submit Reply"

    Once the upload is completed the file name will appear below the input boxes in this window.
    You can then close the window to return to the new post screen.

  6. #6
    Registered User
    Join Date
    12-09-2016
    Location
    Southampton, UK
    MS-Off Ver
    2016
    Posts
    5

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    Many thanks - file attached
    Attached Files Attached Files

  7. #7
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.84 (24041420))
    Posts
    8,753

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    i'm assuming each day is a shift
    and so we can count the number of entries with > 0 values
    then we can use that count times £45 to work out the minimum wage for the week
    say we put that into cell
    I21
    =COUNTIF(I9:I15,">0")*45

    now in the total we can use
    =MAX(I9:I15,I21)
    Attached Files Attached Files

  8. #8
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.84 (24041420))
    Posts
    8,753

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    i'm assuming each day is a shift
    and so we can count the number of entries with > 0 values
    then we can use that count times £45 to work out the minimum wage for the week
    say we put that into cell
    I21
    =COUNTIF(I9:I15,">0")*45

    now in the total we can use
    =MAX(I9:I15,I21)

    Can Brians value be negative because of diesel ?
    if so ,then we need to look at the way we count the shifts

    as it would be possible for his share to be exactly the same as the Diesel and so be zero - but he worked a shift

    we maybe use one of the cells for the receipts of money in the count range
    as NOT blank

  9. #9
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,894

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    So it's not minimum of £45.00 per shift, but if total earning does not equal # of shift x £45.00 it should be adjusted.

    Formula in H19 would be...
    =IF(AVERAGEIF(H9:H15,"<>0")<45,COUNTIF(H9:H15,">0")*45,SUM(H9:H15))

    If each shift should be minimum of £45.00.
    Formula in H9 would be...
    =IF(AND(SUM(0.4*(D9+E9))<45,F9<>0),45,SUM(0.4*(D9+E9)))
    Copy down to H15.

  10. #10
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.84 (24041420))
    Posts
    8,753

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    we can use the date range and count if not blank
    =COUNTIF(C9:C15,"<>")*45

    my assumption was that this was worked out for the week Mon-Sun
    and so 45 * how ever many days worked - would be the minimum wage you would provide - if the earnings in I where less that that minimum value
    and so you want to show the maximum
    either the min wage is the maximum or his weekly earnings

  11. #11
    Registered User
    Join Date
    12-09-2016
    Location
    Southampton, UK
    MS-Off Ver
    2016
    Posts
    5

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    Yes, the minimum earnings for a driver is £45 x number of completed shifts per week, so the driver total and the cost of diesel is deducted from the total received, then the balance is what is owed to Brian (me), if that makes it easier to calculate... Thanks for your help with this ETAF.

  12. #12
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.84 (24041420))
    Posts
    8,753

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    so the driver is in column H

    in which case
    you can still use
    =COUNTIF(C9:C15,"<>")*45
    But put in say H21 (or any other cell you like
    to count the days worked - based on a date being entered
    and then in
    H19
    EDIT Correction
    =MAX(H21,(SUM(H9:H18)))

    so that wll either return his earnings from revenues received if greater than the number of days worked * 45 or if less that
    days worked *45
    for the week
    Attached Files Attached Files
    Last edited by etaf; 12-09-2016 at 11:17 AM.

  13. #13
    Registered User
    Join Date
    12-09-2016
    Location
    Southampton, UK
    MS-Off Ver
    2016
    Posts
    5

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    Many thanks ETAF, this look excellent! I will review it tomorrow and get back to you. Thanks again for your help!

  14. #14
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.84 (24041420))
    Posts
    8,753

    Re: How can I use Excel to work out taxi drivers pay when minumum shift payments apply?

    you are welcome

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Apply fifo when i am making payments to my vendors
    By rishabhmehtam in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 12-22-2015, 11:28 AM
  2. Replies: 11
    Last Post: 10-22-2015, 04:28 PM
  3. What ODBC drivers are installed by Excel 2013
    By GJL65 in forum Excel General
    Replies: 0
    Last Post: 03-16-2015, 11:25 AM
  4. [SOLVED] (urgent help pls) how to apply array formula with ctrl+shift+enter
    By otabokauyelikicin in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-07-2013, 09:56 AM
  5. [SOLVED] Work out Credit card Payments to obtain an end date
    By Derek in forum Excel General
    Replies: 2
    Last Post: 03-02-2006, 04:30 PM
  6. Taxi scheduling database using Excel?
    By WTAMadison in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-15-2005, 05:10 PM
  7. Replies: 1
    Last Post: 08-03-2005, 09:05 AM

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