+ Reply to Thread
Results 1 to 5 of 5

Help with a formula:gratuity amount

Hybrid View

Guest Help with a formula:gratuity... 01-12-2006, 02:35 PM
Guest re: Help with a... 01-12-2006, 03:15 PM
wjohnson I would add 1 more column... 01-12-2006, 03:22 PM
Guest re: Help with a... 01-12-2006, 03:45 PM
Guest re: Help with a... 01-12-2006, 03:50 PM
  1. #1
    Slow Learner
    Guest

    Help with a formula:gratuity amount

    Hi there can someone help me...
    worksheet has 4 colums, column 1 contains full price of article (known
    amount), column 2 has tax amount (not always known), column 3 has gratuity
    amount (sometimes known), column 4 has total without tax but with gratuity.

    Tax, if unknown, is calculated at 7% of amount without gratuity.

    What would the formulas be to have my calculations become automatic on input
    of full amount?

    Thank you

  2. #2
    Gary L Brown
    Guest

    re: Help with a formula:gratuity amount

    Assume...
    Cell A2 - Full Price
    Cell B2 - Tax
    Cell C2 - Gratuity
    Cell D2 - Total
    -------------------------
    B2 = A2 * .07
    C2 = A2 * .15 <=assume 15% gratuity
    D2 = A2 + C2




    --
    Gary Brown
    gary_brown@ge_NOSPAM.com
    If this post was helpful, please click the ''Yes'' button next to ''Was this
    Post Helpfull to you?''.


    "Slow Learner" wrote:

    > Hi there can someone help me...
    > worksheet has 4 colums, column 1 contains full price of article (known
    > amount), column 2 has tax amount (not always known), column 3 has gratuity
    > amount (sometimes known), column 4 has total without tax but with gratuity.
    >
    > Tax, if unknown, is calculated at 7% of amount without gratuity.
    >
    > What would the formulas be to have my calculations become automatic on input
    > of full amount?
    >
    > Thank you


  3. #3
    Forum Contributor
    Join Date
    12-14-2005
    Posts
    176
    I would add 1 more column which would be Column E and would be titled "Total With Tax + Gratuity.
    Your Column D would then read as follows: =(A2+C2)
    Then Column E would read as follows: =IF(B2="",(A2*7%)+D2,(A2*B2)+D2)
    Which reads as follows: If B2 is Empty then A2*7%+D2, IF False - Then A2*B2+D2 this will give you the total of Cost + Gratuity + Tax. If you want to use a % in Cell B2 then you will need to format it as %
    Last edited by wjohnson; 01-12-2006 at 03:41 PM.

  4. #4
    pinmaster
    Guest

    re: Help with a formula:gratuity amount

    Try this:
    in D1
    =IF(A1>0,IF(B1>0,A1+(A1*B1)+C1,A1+(A1*7%)+C1),0)
    copied down

    A1 - amount
    B1 - if left empty then the tax will be 7%, otherwise tax in B1
    C1 - gratuity
    D1 - total

    Hope this helps!
    JG

    "Slow Learner" wrote:

    > Hi there can someone help me...
    > worksheet has 4 colums, column 1 contains full price of article (known
    > amount), column 2 has tax amount (not always known), column 3 has gratuity
    > amount (sometimes known), column 4 has total without tax but with gratuity.
    >
    > Tax, if unknown, is calculated at 7% of amount without gratuity.
    >
    > What would the formulas be to have my calculations become automatic on input
    > of full amount?
    >
    > Thank you


  5. #5
    pinmaster
    Guest

    re: Help with a formula:gratuity amount

    Oops.....misread your post a little, it should be:

    =IF(A1>0,IF(B1>0,A1+B1+C1,A1+(A1*7%)+C1),0)
    copied down

    A1 - amount
    B1 - tax amount
    C1 - gratuity
    D1 - total
    if B1 is not given then the tax will be 7% of A1

    Regards
    JG

    "Slow Learner" wrote:

    > Hi there can someone help me...
    > worksheet has 4 colums, column 1 contains full price of article (known
    > amount), column 2 has tax amount (not always known), column 3 has gratuity
    > amount (sometimes known), column 4 has total without tax but with gratuity.
    >
    > Tax, if unknown, is calculated at 7% of amount without gratuity.
    >
    > What would the formulas be to have my calculations become automatic on input
    > of full amount?
    >
    > Thank you


+ 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