Ok, how do I subtract a percent from a number?

In Excel, this is easy. But numbers isn't doing it.
I want to take a number, say 2400, and subtract 6.9% from it without 1st using an additional cell to find out what 6.9% of 2400 is.
In excel, you just use: =2400-6.9%
But in numbers, this is giving a result of 2399.94
I know it's simple? Anyone know why Numbers handles percentages differently?

Your formula is giving the correct answer, just not the answer to the question you are asking.
2400 - 6.9%*2400 = the result you want
also stated as
2400*(1-6.9%) = the result you want
EDIT: I saw Peter's post after I posted mine. Note that the 6.9 in his formula is not 6.9%, it is 6.9 (which is 100 times greater than 6.9%).
Message was edited by: Badunit

Similar Messages

  • My phone only let's me send iMessage from my email, how do I send and receive from my number?

    My phone only let's me send iMessage from my email, how do I send and receive from my number?

    Hi jwol21,
    If you are having issues sending iMessages from your phone number, you may want to double check that your phone number and your Apple ID have been linked and that your phone number is listed under Start New Conversations From. You may find the following article helpful:
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/ht5538
    Regards,
    - Brenden

  • Unable to subtract 0.1 from a number more than ten times in a row without an inaccuracy of 0.0000000000001

    I'm using a simple formula  =SUM(D2-$B$2)
    where D2 is 100 and $B$2 is 0.1
    When I keep subtracting 0.1 from the last number there is a 0.0000000000001 error after 10 subtractions
    100
    99.90
    99.80
    99.70
    99.60
    99.50
    99.40
    99.30
    99.20
    99.10000000000010
    99.00000000000010
    98.90000000000010
    I know that can round the number but I'm using the spreadsheet to generate cartesian coordinates for a machine and I need to use more than this many decimal places accurately.
    I'm quite suprised numbers can't do this subtraction properly as my pocket calculator can manage no sweat.
    At first I thought my file was corrupted but after trying several new files and reinstalling numbers the issue persists.

    Andrew,
    The floating point processor used by Numbers calculates15 significant digits, without regard to where the decimal point falls. There can be an "error" in the last digit. If that's a problem for your purposes, you'll either have to work around it by restructuring your calculation or by resorting to an app with a more powerful math engine. For simple things like invoices, we can use the ROUND function to overcome the issue. If you actually need that much precision, you're skating on ice that's too thin with this app.
    Jerry

  • How to tell date of manufacture from serial number or how to look up?also when were 1q524 introduce

    how to tell date of manufacture of 1q524 NC701AA-ABA from serial number or how to look up?
    when were they first introduced?

    dlkegarise
    See here for the release date. For the serial number the typical format is to have the 4th, 5th, and 6th characters to reference when the product was built.  The first character is the year date (Y) and the next two (WW), the week in that year it was made.
    CCSYWWZZZZ  
    Hope this helps you and anwsers your questions.  Regards.
    I work for HP. When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!

  • How do I subtract one sum from another and show a balance in another box

    In numbers how do I show the difference in total from one column and another as a balance amount?

    =SUM(range_one)-SUM(range_two)
    Details available in iWork Formulas and Functions User Guide.
    Yvan KOENIG (VALLAURIS, France) samedi 9 juillet 2011 15:45:36 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How do I subtract offset voltage from my data acquisition program?

    I have a simple program (attached) that reads a voltage input and outputs the results to a file. The voltage has an offset (which changes from test to test), and I am interested in zeroing out this value at the start of acquisition (in the 'interface.vi'). Could someone show me how to do this? Thanks.
    Attachments:
    finalsystem.zip ‏161 KB

    What you need to do is put a Wait millisecond timer in the vi such that it is forced to occur before the data acquisition. You then wire the number of milliseconds that you want to wait into this function. There are a number of ways to force the flow of the data. One method is a state machine architecture. However, this approach requires a rewrite of your code (maybe not a bad idea since the code isn't very large). A second approach uses subvi's with Error in and Error out clusters to regulate data flow. This could be nicely integrated into your vi. I have made a simpler modification to your vi which will make it work by putting some of your inputs to the data acquisition vi into a single frame sequence stru
    cture with the Wait function with a five second waiting period.
    Once again, this method will work for your vi, but it is not the preferred approach, especially if the vi grows very large.
    Hope that helps,
    John
    Attachments:
    interface3.vi ‏94 KB

  • How to get the order type from notification number

    Hi,
    i have the notification number,
    fromthis number how can i get the Maintenance Order type.
    what is the table name to get the order type.
    Please tell me.

    Hi,
    First you read table QMEL with notification number and get AUFNR. Then go to AUFK and get AUART (order type).
    Some thing like,
    SELECT SINGLE aufnr INTO lv_aufnr FROM qmel WHERE qmnum EQ <your notification>.
    IF sy-subrc EQ 0 AND NOT lv_aufnr IS INITIAL.
      SELECT SINGLE auart INTO lv_auart FROM aufk WHERE aufnr EQ lv_aufnr.
    ENDIF.
    Hope this helps..
    Sri

  • How to get Shopping Cart Name from PO number in EBP ?

    Hi,
    If I have the PO number how I can get the shopping cart name related to this PO? I need technical fields and table relations.
    Regards,
    Achirangshu

    I'm not sure if this will work. I posted an answer to a similar question a while ago, but it didn't work well in the posters system. So maybe we can try this in steps. See if you get results from this:
    REPORT ztest   MESSAGE-ID 00 LINE-SIZE 80.
    TABLES srrelroles.
    PARAMETERS: po_no(10) DEFAULT '3000001977'.
    DATA: xobjkey  LIKE srrelroles-objkey,
          roleid(22).
    CONCATENATE po_no 'X' INTO xobjkey.
    * use PO to obtain the role id
    SELECT * FROM srrelroles
      UP TO 1 ROWS
      WHERE objtype EQ 'BUS2012'
        AND roletype EQ 'BBP_TARGET'
        AND ( objkey >= po_no
        AND   objkey <= xobjkey ).
      roleid = srrelroles-roleid.
      EXIT.
    ENDSELECT.
    You'll have to use a PO that you know exist in your system.
    If you get no results, try removing the WHERE on objtype and/or roletype and see what values are returned for these fields.
    Rob

  • How do i start auto pages from a number other than one?, How do i start auto pages from a number other than one?

    How do i start my auto numbering from a different number. Although page one is page one in my document it is not page one in the whole file that I am submitting.

    Menu > Insert > Section Break at end of 1st page
    Move to 2nd page
    Inspector > Layout > Section > Page Numbers > Start at: 1
    Delete anything in the header /footer of the 1st page you don'y want (like the page number).
    Peter

  • How do I take a percentage from a number in Numbers

    Hi All,
    Im new to this and normally i would just youtube my question but i can't find it, i think.
    But basically I'm sending an invoice and some products have Vat added on and some don't, so I'm trying to find a formula that will add 20% on to three prices then add the to the total at the bottom like shown in my image below.
    I have done a formal but it doesn't work of course.
    Oh and i just remembered its in Pages I'm doing the formula not in numbers but I guess the table part is the same?
    Thank you in advance for your help with this formula
    NISA

    For this particular invoice, I think this formula will do what you want:
    =20%*(C2+C3+C8)
    Where the * is the multiplication sign.
    SG

  • HT1414 How do I synchronize my chats from another number with my new number

    I have another iPhone 4S which I use for business purpose and I wld like to synchronize both what's app chat to one of dem. is it possible and how

    1: Connect the device to the computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    3: If the device doesn't appear in iTunes, try using the steps in this article to force the device into recovery mode.

  • How can I subtract in formcalc  sum(amount[0],amount[1],amount[2])

    How can I subtract amount[3] from this sum?  sum(amount[0],amount[1],amount[2])

    sum(amount[0], amount[1], amount[2]) - amount[3]
    Kyle

  • How to stop the option key from changing tools when trying to subtract from a selection?

    How to stop the option key from changing my tools when I am trying to subtract from a selection?
    I'm running CS3 on Mac OS Leopard, and the automatic tool switching slows me down, but even preferences doesn't show a way to turn this off.
    Thanks for your help.

    With any marquee tool, JUST holding down the option key should not switch tools. You need to explain the problem much more carefully, It's completely impossible to tell from your description whats going wrong.
    automatic tool switching
    The only preference related to this, is to do with the SHIFT KEY - "use Shift key for tool switch".

  • How to subtract a day from the presentation variable @{system.currentTime}

    Hello,
    How can subtract a day from the presentation variable - @{system.currentTime}
    I use the above as a title in the report. However I want to subtract a day from the above variable. How can I accomplish it?
    Thanks.

    Hi,
    Did you try the steps which I mentioned above. You can use TIMESTAMPADD function in many places in your report but I think not in title section of the title view.
    Also you can try using Narrative view instead of title view to achieve this. Follow below steos:
    * Pull another column in the report and change its fx to TIMESTAMPADD(SQL_TSI_DAY, -1, @{system.currentTime})
    * Now go to the Narrative view and add the below text in Narrative section of the view.
    Active Person Report as of @1
    Here @1 assuming the new column created is placed before all the columns in the request.
    * Also set the 'Rows to Display' as 1.
    * Delete Title view from the report and this narrative view on top of your report.
    Hope this helps.
    Thanks

  • How to subtract n years from a date

    Hi all,
    I need to subtract n years from a given date..
    for example
    if date is 21.07.200<b>6</b>.. if i want to subtract 2 years (n years) i should get 21.07.200<b>4</b>

    hi,
    FM.
    CCM_GO_BACK_MONTHS
    Example
    Data : Lv_current_date type dats,
           lv_new_date     type dats,
           lv_no_months    type NUMC3.
    Lv_current_date = sy-datum.
    lv_no_months    = 12 * 2.
    CCM_GO_BACK_MONTHS
         IMPORTING
             CURRDATE   = Lv_current_date
             BACKMONTHS = lv_no_months
         EXPORTING
             NEWDATE    = lv_new_date.
    Reward Points & Mark Helpful Answers.
    to reward points ;click radio button next to the post.
    select radio button as per the answers.

Maybe you are looking for

  • DVD drive isn't working. Can't install Snow Leopard.

    My DVD drive isn't working properly. Is there another way for me to install Snow Leopard? I didn't see a digital download of this software in the Apple Store.

  • How to specify a policy file in a WS client (AXIS2)

    I am trying to access a dot net web service and i want to make use of the policy file they gave me. i read that AXIS2 supports WS-Policy in the client side but i still can not figure out how to tell the client to use the file. I searched thouroghly f

  • Keynote Remote Doesn't work with iPhone, iPad

    Hi, I have the latest versions of Keynote on my iPhone 5S, iPad 4 and MacBook Pro 13" with Retina Display. All three devices on the same WiFi network. Using WiFi I was able to remotely control/play the presetatnion between iPhone 5S and MacBook. Howe

  • Acrobat X Pro - Export multiple PDFs to JPG

    In Acrobat 9 Pro I am able to export multiple pdfs to jpg using file--->export multiple....   In Acrobat X I can't seem to find this funtionality.  Any ideas? Thanks.

  • Read log into Internal table

    Hi all, I am using a transaction CJR2. At the end of this transaction I get a Log. I want to read this log into an internal table. How will it works. Please suggest. Thanks Sanket sethi.