Adding Sales Tax to a Invoice

Folks,
I have an existing Invoice for my small business I had created in Pages '09. It works great, but now I want to add a section where Pages will automatically take the total sale and add 8.9% Sales Tax to it and place that number to be added to the total sale.
Any ideas on how to do this?
I'm willing to share the invoice file so anyone can see where and how I want it done.

The formulas are described in :
iWork Formulas and Functions Help
Or better in
iWork Formulas and Functions User Guide.
Assuming that the Total is in C12
in D12 enter:
=ROUND(C*0.089,2) to calculate the tax itself.
in E12 enter:
=C+D to calculate the total with taxes.
I'm not sure that the Help or the Guide where needed for such formulas but, one never knows
Yvan KOENIG (from FRANCE lundi 3 août 2009 17:47:23)

Similar Messages

  • Sales Tax details

    Hi ABAP gurus,
    I have a requirement to design a report which displays the sales tax details for invoices payable to vendors. Can anybody please help me with this with what tables and transactions to look for the data?
    Fast Replies will be appreciated.
    Thanks in advance.
    Shivani.

    Dear Shivani
    Use TCode FBL1N in which you can get the required details.
    The details are stored in BSEG.  If you run SE16 / BSEG by giving vendor code in the respective field, you can get the details.
    Thanks
    G. Lakshmipathi

  • Service Tax and Sales Tax-India

    In SAP how we can enter both Service Tax and Sales tax in single invoice. Is there is any option to enter both tax code in a single invoice?

    Hi
    For certain type of Vendor Invoices, both service tax and VAT is applicable in India. This can be done with the help of your tax procedure, where in you calculate service tax on Base Amount and VAT on the BASE AMOUNT plus Excise, if applicable. You need to create a single tax code like that and maintain the suitable condition records. I guess the standard TAX PROCEDURE TAXINN also takes care of this requirement.
    Regards
    Sanil

  • How can I add sales TAX at the end of my calculations?

    How can I add sales TAX at the end of my calculations?

    We currently do not support adding sales tax.
    Randy

  • Excise invoice and sale tax  applicable  in consignment process

    Hi,
    How excise invoice and sale tax  applicable  in consignment process in below stages--
    in consignment fill up,consignment issue,Return andpickup
    Regards
    Ishikesh

    Hi,
    You have to pass JV for 50 picked up items through J1IS. For this you have to create new subtransaction type type and accordingly maintain the G/L in the tax on goods movement settings for acoount determination node.
    Regards,
    Sagar Wairagade

  • Adding New Field Under Sales Tax/Service Tax Tab in XD01

    Hi Experts,
    I want to Add new Field in CIN Details under Sales Tax/Service Tax Tab.
    Is it Possible to Add Field under Standard Tab.
    Thanks & Regards,
    Sandip Kokate

    hello,
    yes there are two ways:
    1) change standard screen. (that's the bad one).
    2) Use GuiXt tool which provides you with a possibility to add your custom objects into standard screens, change layout, visibility and so on.
    http://www.****************/Tutorials/Others/GUIXT/Page1.htm
    http://www.synactive.com/tutor_e/tutor.html
    i had personally used this third party tool without license ( you will be able to use only basic commands. adding  input fields is one of them). I think it is the best way to enhance old transactions which don't have appropriate BADi's,  user exits and so on.
    br,
    dez_

  • Decimal conversion of Sales Tax in 'SPARE PARTS SALE INVOICE' ( smart form)

    Hello,
    I am displaying a the value of the Sales Taxc in 'SPARE PARTS SALE INVOICE'. (in Smart Form)
    The field(which holds the Sales Tax value is 'KWERT' -LBBIL_INVOICE-IT_KOND ), with datatype 'CURR', reference table 'KOMK' and reference field 'WAERK'.
    In my smart form,i have declared a variable 'SALES_VALUE' of datatype 'KWERT' and reference field 'IT_PRICE-WAERK' (LBBIL_INVOICE-IT_PRICE), where 'WAERK' is the SD document currency.
    Now when i display the field 'SALES_VALUE' i get 735.00 , whereas the original value in the field is 73.5
    how to correct this and where am i wrong ?
    Thankyou for yur time and really appreciate the help.
    Shehryar

    You are using currency fields that reference a currency code. Most currencies in SAP have two decimal places. Dividing by 100 will work in most cases. Ideally you should get the CURRDEC value in table TCURX for the currency you are working with... then divide by 10 that number of times.
    example-
    USD, 2 decimals, divide by 10 twice.
    There is a function module that will do this for you. Can't think of the name...???

  • VAT or Sales tax number display on Invoice.

    Dear Friends :
    We have an urgent requirement.
    We would like to disply Sales Tax no or VAT no on the invoice when we print.
    Currently we are using smartforms.  Any idea or any light how to display text on the invoice ?
    Full points will be given to those who help me to solve the mystry.
    Vanbills

    Hi Van,
    Normally, The VAT Registration Number is stored in the customer master General data, Control tab  page.KNA1 - STCEG. is the field name.
    You can pull this into the smart form. It depends where you want to put this information in the smart form.
    Create a separate.Text object and you can print the Vat registration details here.
    You can tell the details of how to pull the VAT registration number to the ABAPer and he will write a code to pull the data from there and print in the invoice.
    Regards
    Srini

  • HT1420 what is the sales tax added to songs purchased from apple store?

    what is the sales tax added to songs purchased from apple store?

    The amount of Tax Payable varies and is dependant on your location...
    You will need to investigate that yourself...

  • How can I apply sales tax / invoices

    I'm just getting to know numbers (and iwork),
    how can I apply sales tax to only the desired lines I want with the invoice templates?

    Linda Linda wrote:
    how can I apply sales tax to only the desired lines I want with the invoice templates?
    One way is with the addition a of a checkbox column to the template to indicate taxable items & the addition of a separate column for the tax, which you can subtotal separately & add to the untaxed "Cost" column. The formula for the tax column would use an IF statement & the fact that a checked box represents the "true" condition & an unchecked one the "false" condition. The formula would be something like:
    =IF(D, $C$11*F, 0)
    where $C$11 is a reference to the template's tax rate cell, "D" is the column with the checkbox format, & "F" is the Cost column, here "bumped" to the right from its original column by the addition of the new columns. (Yvan's ROUND formula can be applied to the individual item taxes or to the tax subtotal, depending on what is customary or required by law.)
    A more sophisticated, automated approach could involve a separate table in a separate sheet listing the taxable (or non-taxable) item descriptions & a formula to calculate the truth value from that instead of with a checkbox column. This would allow you to avoid showing a checkbox column in the submitted invoice without hiding it.
    Note that in any approach, you can hide columns (or rows) you don't want to be seen or printed.
    Message was edited by R C-R to explain the "F" reference.

  • Invoice Smartform - Printing sales tax rate

    Hey,
    I am having difficulties figuring out what changes I need to make in the print program RLB_INVOICE and the smartform LB_BIL_INVOICE in order to print out the sales rate tax.
    Thanks!
    Kas

    No Need to change the print program RLB_INVOICE , you need to chnage the smartfrom, anyway ur getting the  document number based on that you can fectch the sales tax and dispaly tha data....
    in the smartfrom you can write the code in program lines or From Routines.

  • Problem adding a sales bom to an invoice

    Hi
    I am trying to add a sales bom to an invoice, which I can add ok but I can't seem to access the components of the bom
    I have logged this with SAP and they said I should post a request on this forum
    Thanks
    Regards Andy

    K.. I see what you mean now.
    The best place to ask this question is in the SDK forum (link below)
    SAP Business One SDK
    They will definitely be able to help you out there! Don't worry, you definitely won't get redirected to another forum from there!!! =)
    As an end user have only used the DTW (where you have to enter all components etc), so can't be of any help.
    Edited by: Rajiv Agarwalla on May 9, 2008 1:06 AM

  • How do I set-up sales tax in shopping cart as a single entry for entire invoice?

    The only way I can see to enter sales tax is by making a separate entry for product and another one for sales tax on shipping. This make no sense to me and looks really bad.
    Thanks in advance!!

    Hi,
    I'm afraid I cannot think of another way. However I'll leave this thread open to allow the community to offer any possible suggestions if a workaround has been found and applied. 
    Kind regards,
    -Sidney

  • Sales tax and Labor Tax

    Hello Friends
    We are on ECC6.0
    On our Service Contracts the is labor taxable and not sales taxable we are having a bit of an issue with sales tax on Service Contracts. Some states are labor tax exempt and some are not. When we create the Service Contract the sales tax is being added to the sales order. When the tax is not supposed to be included, I delete the tax rate from the sales order. But when AR does  invoices for the sales order the sales tax is added back on to it. How do we remove the tax parentally or by sales order for each service contract?

    Closing ticket no suggestions given

  • Multiple Tax in an Invoice

    Hi All,
    Please i need to know how i can implement the following:- i want to implement tax in an Invoice document in such that i can deduct 2 separate tax and also Witholding Tax at Payment level. i. e .
    1. VAT - 5% of Net at Invoice Category -> link to Account 210012
    2. CAB - 2% of Net at Invoice Category  -> link to Account 210015
    3. WHT - 5% of Net at Payment Category -> link to Account 110023
    Pls Help am using 8.8  UK Version.

    Hi Adegoke,
    If you get creative, you could use the Freight1, 2, 3 fields on Sales Order (turn them on through Form Settings). Create FMS queries and add percentage here as tax you want. These colum perdentage taxes get added to the total and show up in total along with other Freight line at the bottom of the form.
    Ctrl double click onthe form columsn Freight 1 etc and rename to what you want.

Maybe you are looking for