Thousands Separator

Hi,
I made a table in a slide. I wanted to add numbers in the table, and I wanted the numbers look like this format:
75,000,000
But the problem is that it shows me the number looks like this format:
75000000
If you can see the difference here is that the first one has the (thousands separator) whereas the other one don't.
How can I make numbers which have the (thousands separator)?
BTW:I checked the choice that says(thousands separator) in the table>format.
Remember:I don't want the decimals. I want the little comma (,) between thousands.
regards
tasi2006,

tasi2006,
Check your numbers format in:
+System Preferences > International > Formats > Numbers+
Is it showing there with the correct comma dividers? It should follow the region conventions.
Narrow down the problem by testing in other apps.
It is working in my test. Can you confirm all the settings you have used and whether you have overridden anything with custom conditional format. Also which template you are using so that I can match that.
Peter

Similar Messages

  • Thousand Separator is Not Appearing in Amount Fields iRecruitment

    Hey Guys,
    My requirment is to show comma as thousand Separator for example 10,000 but its showing 10000.
    I am facing this issue in all amount fields in iRecruitment like Vacancy Page (Min Propose and Max Propose) and Offer Page.
    I set the below profile options
                  Currency:Thousands Separator = Yes
               ICX: Numeric Characters = 10,000.00
    and
             Preferencess > Regional Section > Number Format  = 10,000.00
    I am using EBS 12.1.3 and i cleared cashe but still no effecet. Is there any other setting need to be done?
    Please Help
    Regard
    Mazhar Hussain

    i am also thinking same about it, but right now my CSI is has been expired so i cnt log SR that why i asked here if someone even experience it.
    Regards
    Mazhar Hussain

  • Thousand Separator is Not Appearing in Amount Fields in iRecruitment

    Hey Guys,
    My requirment is to show comma as thousand Separator for example 10,000 but its showing 10000.
    I am facing this issue in all amount fields in iRecruitment like Vacancy Page (Min Propose and Max Propose) and Offer Page.
    I set the below profile options
                  Currency:Thousands Separator = Yes
               ICX: Numeric Characters = 10,000.00
    and
             Preferencess > Regional Section > Number Format  = 10,000.00
    I am using EBS 12.1.3 and i cleared cashe but still no effecet. Is there any other setting need to be done?
    Please Help
    Regard
    Mazhar Hussain

    When i go through Patch Description
    Patch Applicable for versions:
      Iprocurement R12
    5. Dependant Applications:
      None.
    6. Patch to be applied:
      Server.
    7. Patch applicable only when a particular application installed:
      Oracle Iprocurement.
    Its say that Patch for  Iprocurement so how can i apply this patch for iRec?
    Regrds
    Mazhar

  • How to put SPACE thousands separator

    Hi there, I'm thinking how to format following numbers, eg: (integers)
    150000
    2000000
    and I would like to export them as CSV file from sqldeveloper to MS Excel and displaying them like =>
    (with space separator)
    150 000
    2 000 000
    without Excel (formatting), so since beginning, Excel will see it as number with space thousands separaors
    Could You help me?

    Hi,
    This is an Excel problem. You'll have to do something inside Excel to recognize that column as a number and display it with spaces.
    As you pointed out, Excel's default behavior, when it sees an embedded space in the column, is to treat the column as text.
    Excel's default behavior (at least on my system) is to use ',' as a thousands separator, if it uses a separator at all.
    If that column is going to contain spaces and be treated as a number, then you need to override Excel's defaults.
    This is an Oracle forum You may get lucky, and find someone who knows enough about both Oracle and Excel to solve your problem completely. I'm sorry I don't know enough about Excel to do it for you. The most you can expect from an Oracle forum is for someone to show how to produce a certain type of CSV, but you'll have to spell out exactly what that CSV has to contain.
    For example, if you can find some string of characters that tells Excel "the folloiwng column of the CSV is a number, and should bne displayed with spaces as the thousands separator", then someone in this forum can help you produce that output with that string of characters in Oracle.

  • Amount field with thousand separator

    Hi friends,
    i want to display amount field (5794.00)with thousand separator as (5,794.00).
    i defined amount field as character data type for my requirement.
    user want to see this value with thousan separator.
    Please help me hoe can i get thousand separator.
    Thanks
    ramesh

    Hi Ramesh,
    There is two functions for converting display currentcy
    CURRENCY_AMOUNT_SAP_TO_DISPLAY
    Convert currency value from value stored in SAP to displayed currency
    CURRENCY_AMOUNT_DISPLAY_TO_SAP
    Convert currency value from displayed currency value to value stored in SAP
    Try below,
    DATA declaration
    WMTO_S-AMOUNT =  Type DEC :: length 15 :: Deciamls 4
    parameter: p_discur like TCURC-WAERS,     "Display currency
               p_intval like WMTO_S-AMOUNT.   "Internal Amount
    data:      gd_disval  like WMTO_S-AMOUNT. "Display Amount
    *Start-of-selection.
    START-OF-SELECTION.
    CALL FUNCTION 'CURRENCY_AMOUNT_SAP_TO_DISPLAY'
         EXPORTING
              currency        = p_discur
              amount_internal = p_intval
        IMPORTING
             AMOUNT_DISPLAY   = gd_disval
        EXCEPTIONS
             INTERNAL_ERROR   = 1
             OTHERS           = 2.
    IF sy-subrc EQ 0.
    You are now able to manipulate the returned value.
                            I.e. Convert it to GBP
    Without using this function module you would only be manipulating the
    SAP stored value, which is often missing a number of zeroes.
          I.e. 28000 JPY is stored within SAP as 280.
    ENDIF.
    *End-of-selection.
    END-OF-SELECTION.
    write:/(30)  'Value stored in SAP:', p_intval,
          /(30)  'Displayed currency:',  p_discur,
          /(30)  'Ammount is displayed Currency:', gd_disval.
    Hope it help
    Wiparat

  • Thousands separator when displaying year in dashboard prompts

    In our reports, when we include just the year field in prompts, they display with a thousands separator (e.g. 2,012 for the year 2012)
    Does anybody have any ideas on how to fix this. We are on 10.1.3.4 but any hint would be helpful.

    Change the year column data type to INT in the physical later. Or you can change the column properties of the column in Answers.
    Hope it helps.
    Regards,
    Kalyan Chukkapalli
    http://123obi.com

  • Problem with thousands separator

    Hi,
    I'am working on dunning letters print and i've a problem with the thousands separator.
    Data is stored in a table field typed CURR. The intern format is 119600,60
    When i print directly this value on my SmartForm, there are many blanks before the number, corresponding to the size of the variable (15 caracters). I don't know hax to remove this blanks.
    I tried to change the type of the variable by moving the value into a CHAR variable. The result is better : the blanks have been cleared out but unfortunatelly, the thousands seperators too.
    Does someone know how to put the value of a variable typed CURR in a string or a char variable with thousands separators ?
    To sum up my query :
    The CURR variable contains 119600,60
    I want a String or a char variable containing 119 600,00
    Thanks a lot
    regards
    Edited by: Larrière Dorian on Jun 19, 2008 11:53 AM

    Hi...
    write : wf_cu LEFT-JUSTIFIED.
    This state ment removes the blanks at the beginning....
    The wf_cu may be of curr type
    Edited by: Rudra Prasanna Mohapatra on Jun 19, 2008 12:08 PM

  • Thousand separator in MS Excel 2010

    I recently upgraded to Microsoft Excel 2010 and I am having an issue in the formatting of my numbers. The thousands separator (comma in my country) is only being applied to the last thousand bucket but all other thousands above that are not being separated.
    For example, 1,000,000 (one million) is being displayed as 10,00,000
    I have read through hundreds of questions and answers in various forums but no one else seems to be having this issue. At my company, every person who has been transitioned to Excel 2010 is experiencing the same problem. I have tried searching and changing
    settings, advanced settings as well, but nothing seems to work. Please help me.
    I am a financial controller and my reports are very cumbersome when i cannot read the numbers easily.
    Many thanks.
    Kind regards,

    1. In Windows 7 go to the Control Panel then click on:-
    Clock, Language, and Region
    In the:-
    Region and Language
     - section click on:-
    Change the date, time, or number format
    The:-
    Region and Language
     - window should open.
    2. In the:-
    Region and Language
     - window click on the button called:-
    Additional settings . . .
    The:-
    Customize Format
     - window should open.
    3. In the:-
    Customize Format
     - window click on the:-
    Numbers
     - tab (if it has not already been selected) then make the changes that you want.
    On my pc (which is set up the way that you want it) the following are the settings:-
    Decimal symbol: .
    No. of digits after decimal: 2
    Digit grouping symbol: ,
    Digit grouping: 123,456,789
    Negative sign symbol: -
    Negative number format: -1.1
    Display leading zeros: 0.7
    List separator: ,
    Measurement system: Metric
    Standard digits: 0123456789
    Use native digits: Never
    Click:-
    OK
    EXCEL should now return to the window called:-
    Region and Language
    Click:-
    OK

  • Issues with thousand separator

    Hi all. can anyone help me. In my PDF form i create a numeric field. I set numeric format with these parameters:
    Decimal places = 0
    Separator style = 1,234.56
    Currency symbol none.
    but for all that feild displayed value as "1234.00". to remove zeros i add javascript for this field: this.getField('1').value=0+this.getField('1').value; Now it show like "1234". but I'm still looking for solution to show thousand separator. Please help

    It doesn't help. I forgot to say 1 detail. field works fine when I change value manualy in Acrobat, but I use web service to fill data in pdf (when it done the file becomes read-only). and when pdf is filled I don't see separator

  • Custom thousand separator for decimal values.

    Hello esperts,
    I have a a WD app with a decimal context attribute, I have already a Simple Type that formats the decimal so the thousand separator is a coma (,) and the decimal separator is the dot (.)
    I want to know if it is possible to change the thousand separator to dot and the decimal separator to comma without changing the user's language. Or even use whatever character I want to be the thousand separator e.g. @ | ¬ whithout changing the data type (decimal).
    Thanx in advance.
    JV

    Hi Siarhei,
    I dont want to use calculated fields, nor strings because I need the values of the decimal attribute. I will be desplaying these decimal values through a table and sorting functionality is a must. So as you should know, if I have 1, 2, 3, 20 and 100 and convert them to string, on sort it will be incorrect because of string sorting ( 1, 100, 2, 20 and 3).
    Basically my requirement is to be able to change the decimal presentation without changing the user's locale or language. I don't know if that's possible.
    Say, I select an option on my application that says "comma separated thousands", the decimal values will be presented this way ###,###,###,###.00 or when the user selects the option "dot separated thousands", the decimal values will be presented like this ###.###.###.###,00. I already tried to format the last reprersentation but I get java.lang.IllegalArgumentException: Malformed pattern. I have already checked the DecimalFormat API, so I know the pattern is incorrect, still I'm looking if by chance I'm forgeting something else to do in order the application to work as I spect.
    Thanks!
    JV

  • Can a thousands separator be applied to a row of numbers?

    I'm using Numbers on my iPad and would like to know if a thousands separator can be applied?

    Numadel,
    In Numbers iOS flip the Separator switch to On:
    In Numbers for OS X on Mac tick the Thousands Separator box:
    Basically the same.
    SG

  • How to print thousands separator on a report.

    Hi everybody,
    I am trying to print a report with thousands separator but I'm not able to do it.
    I tried using the currency addition to the write statement but doesn't work.
    Any help will be appreciated.
    Orlando.

    Hi orlando,
    1. It comes by default.
       - thousand separators.
    2. just try this.
    report abc.
    data : m type p decimals 2.
    m = '1500.66'.
    write :/ m.
    m = '765123.66'.
    write :/ m.
    m = '9765123.66'.
    write :/ m.
    regards,
    amit m.

  • Remove thousands separator from chart (x, y axis)

    Dear all,
    my first application is almost completed, but some finishings are still missing.
    E.g. the display of the year in the chart contains thousands separator. How they can be removed or avoided? Any idea?
    Thank you so much!
    Mehtap

    Hi Tammy,
    thanks. But this does not seem to work for Calendar Year.

  • Please help!  Can't make commas (thousands separator) appear in numbers

    I open Pages. I type in a number (123456). While cell is still selected, I open Inspector and select Cell Format = Number. I then check the Thousands Separator checkbox. It does NOT put commas in my number.
    Any help greatly appreciated!

    A couple of thoughts:
    First, make sure you have US formatting as the default for numbers (not the program Numbers) in System Preferences > International > Formats.
    In the table inspector click on Format & make sure the cell is formatted to number & press Enter/Return/Tab to move out of the cell & see if it "takes" then.
    If none of that works, it could be corrupt preferences. Quit Pages & then delete the com.apple.iwork.pages.plist file found in HD > Users > (your account) > Library > Preferences.
    Fruhulda,
    The thousands separator in the US (where the OP is) is a comma & the decimal is a period/full stop/dot.
    Message was edited by: Peggy

  • CONVERSION EXIT to remove thousand separator from quantity field

    HI
    NEED HELP
    do u know any  FM or CONVERSION EXIT which remove thousand separator from quantity field.
    Eg. 1,234,567.11 SHOULD be displayed as 1234567.11

    Hi Chetanpatil.
    Try this:
    If your quantity has thousand separator as comma:
    translate lv_quantity using ', '.
    condense lv_quantity.
    If your quantity has thousand separation as dot:
    translate lv_quantity using '. '.
    translate lv_quantity using ',.'.
    condense lv_quantity.
    You'll need to check for the user thousand separator configuration in table USR01 field DCPFM or by calling BAPI_USER_GET_DETAIL and act accordingly.
    Regards,
    Andres.

Maybe you are looking for

  • No connection between  EP 6.0 and R/3 4.7c

    Hi,      We are installing EP 6.0 SP14, and Web AS and EP with SP 14 is already updated. Now we are installing BP ESS 50.4 and MSS 60.1.5.      Scenario: EP 6.0 SP 14 connected to a Backend (R/3 4.7c), by means of ITS with SSO with SAP Logon Ticket,

  • Collect the yellow notes from pdf's into 1?

    With several people we are working on this design. Right now we are checking the pdf with 3 people at different locations (not in a network). Later on i have collect their remarks and put it all in 1 pdf with the yellow stickies/balloons. Is it possi

  • SOLUTION: Are you having problems using HDV in FCP X and iDVD?

    If you edit HDV (TAPE) in FCP X and want to burn the video in iDVD you will find the following problem  .  .  .  iDVD squashes the image as shown in the screenshot below. Whether you export as ProRes or H.264, iDVD will see it like this as a squashed

  • Loading bulk data in to oracle

    what is the procedure to load bulk amount of data in oracle database?

  • Telnet error (Code: 62)

    I'm running VIs (LV8.6) under TestStand 4.1. The following message is from a Telnet Read/Write vi.  I usually open the Telnet connection at the beginning of the test and close it at the end.  Sometimes there is a gap of long time without any telnet a