Removing commas from numbers

his has a couple of items in it....
In Numbers, I formatted a phone number column imported from a Text file, but it put in commas, like the phone is a number: 4157933161 is 4,157,933,161. Can I get rid of those commas?
Also, I couldn't import a .txt file (a mailing list from Experian) into Numbers. When I did open the file with Numbers, Numbers put it all in 1 cell - yikes. So I had to go back to my old pc, import the .txt file (easily...) and then take that .xls file and load it on my MAC in Numbers - good golly you have got to be kidding. What am I missing. How do I import a .txt file (it actually is comma seperated but marked as an .txt file - MS Excel had no problem)
This has to do with printing Pages or say pages from the Web. Can you print just a selection of say a Pages doc. Say I select /highlight one paragraph of a 50 page document and want to just print that, on MS in the Print page there is a box "selection" which commands the printer to only print what you selected/highlighted. Customer Care at Apple said he did not know of anyway to do this...yikes again.

In Numbers, I formatted a phone number column imported from a Text file, but it put in commas, like the phone is a number: 4157933161 is 4,157,933,161. Can I get rid of those commas?
Find / Replace is your friend.
Find "," Replace by nothing.
Also, I couldn't import a .txt file (a mailing list from Experian) into Numbers. When I did open the file with Numbers, Numbers put it all in 1 cell - yikes. So I had to go back to my old pc, import the .txt file (easily...) and then take that .xls file and load it on my MAC in Numbers - good golly you have got to be kidding. What am I missing. How do I import a .txt file (it actually is comma seperated but marked as an .txt file - MS Excel had no problem)
Comma Separated Values files are correctly treated if their name extension is .csv.
This has to do with printing Pages or say pages from the Web. Can you print just a selection of say a Pages doc. Say I select /highlight one paragraph of a 50 page document and want to just print that, on MS in the Print page there is a box "selection" which commands the printer to only print what you selected/highlighted. Customer Care at Apple said he did not know of anyway to do this...yikes again.
He is perfectly right. There is no such feature.
As we may print a given range of pages it's not a true problem.
We may insert temporary page breaks to do the trick.
And of course, if you prefer MS you may stay with it !
Yvan KOENIG (from FRANCE mercredi 22 octobre 2008 11:20:29)

Similar Messages

  • Removing commas from report result

    Hello gurus,
    Is there a way to remove commas from data values in the BEx reports?
    I used NODIM() to remove $ signs and units. We need to remove the commas as well.
    Thank you,
    Malli

    hi,
    in query properities you should have option to show unit on the top of column only and in key figure properities should be option to choose how many decimal spaces you want to be visible on report (this option you have in rsa1 -> infoobjects -> your key figure -> BEx reporting tab)
    Regards,
    Andrzej

  • Removing commas from on address line!!

    I need to remove comma's from an address field:
    substr(s_claim_periods.latest_prop_addr(CLAIMS.cla_refno),1,255) AS D,
    i have tried my usual method of
    translate (CONTACT_ADDRESS, ',' ,' ')
    but im having problems incorporating it with the substr command!!

    you could also use replace
    replace (adr, ',')as in
    SQL> with test as
      2  (select 'address,address,address,address,address' adr from dual
      3  )
      4  -- End of Testdata; here is the actual query:
      5  select adr
      6       , replace (adr, ',')
      7    from test
      8  /
    ADR                                     REPLACE(ADR,',')
    address,address,address,address,address addressaddressaddressaddressaddress

  • REPLACE statement removing commas from a money convert... I do NOT want it to do this

    I am using a case statement to remove the '-' from a negative number and place a '(' there instead. 
    The negative side of the CASE statement is as follows:
    REPLACE(CONVERT(varchar, CONVERT(money, SUM(Begin_Balance)), 1), '-', '(') + ')'
    The positive side is:
    CONVERT(varchar, CONVERT(money, SUM(Begin_Balance)), 1)
    The data output for the positive portion is 100% correct. Here is an example of the output I receive.
    (18271.15)
    (25000.00)
    82,490.00
    45,000.00
    Why is the replace statement stripping my commas?

    >> I am using a case statement to remove the '-' from a negative number and place a '(' there instead. <<
    So many horrible fundamental errors in one sentence! 
    1.  CASE is an expression, not a statement. An expression returns a scalar value of a known data type, A statement changes the schema. 
    2. In SQL, all display formatting is done in a presentation layer, never in the database.
    3. We use the ANSI/ISO Standard  CAST()  and not the old Sybase/Unix CONVERT today
    4. We use DECIMAL() and not the old Sybase/Unix MONEY. This thing does not work; it fail to do correct math; Google it! Do a data audit and see if you can go to jail for this. 
    5. SQL is not COBOL. The COBOL language treats all data as strings. STOP DOING THAT IN SQL! This language uses abstraction in the database and the presentation does the job that your old PICTURE clause used to do. 
    Can you get a 2-3 week intro course to SQL and modern programming form your company? 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Removing comma (,) from string

    Hello Friends,
    I have a string something of this nature
    Sting : ',3456,45454,,45454,'
    Need to have just comma seperated value : '3456,45454,45454'
    Tried with replace but getting - '34564545445454'
    select replace ( ltrim(RTRIM(replace(',3456,45454,,45454,', ',,', ','),',')),',', '') from dual;
    Appreciate your help .
    Thanks/Kumar

    Hi, Kumar,
    kumar73 wrote:
    Hello Friends,
    I have a string something of this nature
    Sting : ',3456,45454,,45454,'
    Need to have just comma seperated value : '3456,45454,45454'
    Tried with replace but getting - '34564545445454'
    select replace ( ltrim(RTRIM(replace(',3456,45454,,45454,', ',,', ','),',')),',', '') from dual;Do you want to remove ','s at the beginning of the string, but leave them in the other places?
    If so:
    LTRIM (string, ',')LTRIM removes the given character(s) from the <b>L</b>eft side (that is, the beginning) of string. That's all you want here. (Was your string generated by SYS_CONNECT_BY_PATH? This is a very common problem.)
    RTRIM removes the given character(s) from the <b>R</b>ight side (that is, the end) of string. I don't think you want that; you certainly don;'t need it in the example you gave.
    REPLACE removes the given characters anywhere in the string. You definitely don't want that. If you did, there would be no point in also using LTRIM or RTRIM.

  • How to remove commas from xvbap-kwmeng field

    Hi All,
    Can you guys/gals help me ??
    I am having a issue with comma in xvbap-kwmeng field, I have value 1,662.000,
    How can I get rid of comma.
    and also please be aware that, I may have 1,662,123.000 situtation as well.
    How can I remove all comma's from by xvbap-kemeng field.
    Thanks
    Anitha.

    Hi,
    Check whether TRANSLATE statement works for you
    TRANSLATE xvbap-kwmeng USING ', '.
    In single quote use comma followed by a space after that use  CONDENSE  xvbap-kwmeng NO-GAPS.
    Regards,
    Selva

  • Removing Comma (,) from Year Formatting

    Hello,
    I'm attempting to generate a text string that corresponds to a given year. However, when I convert to text from the number format, the result includes a comma:
    the date's year = Text(ExtractYear(today's date)) -> "2,011"
    1. Does anyone know how to prevent the comma in the text attribute, so that I'll get "2011" rather than "2,011"?
    2. Similarly, I'd also like to know how to format the decision report so that the number variable (the output of 'ExtractYear') also does not appear with a comma.
    Thanks in advance,
    - Patrick

    This has been raised internally as OPAD-4226, so we are looking at it for a future release.
    This is a formatting issue - ie. all numbers are formatted as if they are actual numbers, but of course years have their own convention. A custom format (eg. in Web Determinations) could format without the comma but it would apply to all numeric attributes. Custom code could also be used to apply the non-comma format only to certain attributes you specify, but it's not an out-of-the-box option.

  • How to remove commas from number in Bex analyzer

    Hello gurus,
    I am having a requirement where i need to show the number without separating with commas. for example 23,34,780 as 2334780 in the report for a particular column only. I know that it is possible using the macros but i am unaware of the VB code.
    I have created the same using  the BEX Analyzer of BI 7 by creating the workbook and maintaining the properties for that columns. But right now i am working in BW 3.5 when i tried the same in this i am getting the run time error and disconnecting from the SAP.
    So now i have decided to go with the Macros pls help me with the VB code.
    Regards

    Thanks for ur reponse Danny.
    I have edited the macro and paste the below code changing the column number.
    Sub Macro3()
    ' Macro3 Macro
        Application.Goto Reference:="Macro3"
        Columns("R:R").Select
    Selection.NumberFormat = "#############"
    End sub.
    But its not working, still i am getting the commas in between the key figure. kindly let me know if i need make any other change bcoz i havent work on macros VB code earlier.
    Regards
    Edited by: KK on Jun 16, 2009 2:17 AM

  • Removing commas from keyfigure

    Hi All,
        I got a requirement in which, i dont need commas in the amount keyfigure.
    eg.  current value:   12,20,345.00.
           Expected value:1220345.00.
       Plase send solution to this probleam,if anybody has solved the same problem.
    Thanks&Regards,
    Ramana.

    Hi tony,
         Our Requirement is that from the output of a web report we have to download the data to a excel file. From Excel,data will be loaded to SAP-R/3.
        In Web report, Amount filed value is for eg: 12,345,67.00. People who load the data to SAP-R/3 require Amount as 1234567.00.So they r asking the amount field without commas in the web report.
       this is exactly my requirement.
       If u r still unclear about requirement pls let me now.
       Thanks&Regards,
      Ramana.
         for us data is coming from third party ETL tool.

  • How to remove the comma from string

    Hi,
    I Have string like below :
    String some1="123,44.22";
    I want to remove comma from string and final output should be 12244.22.
    public class getOut{
    public static void main(String args[]){
    String some1="123,44.22";
    getChars(int 0,some1.length(),char[] dst,0);
    can somebody in the forum give me idea how to remove comma from the String and
    have a string without comma.
    Thanks
    Jack

    int idx = oldString.indexOf(',');
    if(idx >= 0)   
          newString = oldString.substring(0, idx) + oldString.substring(idx + 1);or for jdk 1.4 and later
    str = str.replaceAll(",", "");

  • Need to remove Commas REgular Expressions?

    How can I use java to remove commas from a number.
    1,000 string
    need it to be
    1000
    can I pass it through some sort of regular expression?

    I was attempting to do it with regular expressions to learn how to do them better.
    Thanks for your good comment.
    nupevic

  • Removing commas in fmt:formatNumber

    Hi
    just wondering how to remove commas with numbers outputted within a fmt:formatNumber tag.
    So for example instead of showing 1,000 I want 1000 to be outputted.
    Thanks in advance

    I found out after a bit of testing just have to add
    pattern="#"

  • How can we remove the commas from the Formula value in SAP BW BEx query

    Hi All,
    How can we remove the commas from the Formula value in SAP BW BEx query
    We are using the formula replacing with characteristic.The characteristic value needs to be display as number with out commas.
    Regards
    Venkat.

    Do you want to remove the commas when you run the query on Bex Web or in RSRT?
    Regards

  • Did not know simple things such as removing hyphen from phone numbers will be so complicated. How do i remove the hyphen from stored phone numbers since i am not able to make a phone call using VOIP. Everytime i make a phone call i have to type the number

    Did not know simple things such as removing hyphen from phone numbers will be so complicated. How do i remove the hyphen from stored phone numbers since i am not able to make a phone call using MobileVOIP. Everytime i make a phone call i have to type the number.

    Go into your contacts and edit them.

  • Removing Commas and Spaces from Field

    I have a table called TableD1 in a database with a field called "Range".
    The ranges are like 1-1000; 1001-2000; etc. up to like 1000000-200000.
    That is how they are supposed to look, they are not numeric fields, just general, containing a low, a dash and a high all in the same field.
    I just discovered that quite a few of the entries have included commas and spaces, like 1-1,000 or 100000 - 200000.
    I need to write a Query that will remove all of the commas from the data in TableD1's "Range" field, then all of the spaces.
    I imagine they are some kind of Update statements but because of the potential to blow up the whole thing, I'm reluctant to experiment.
    Does anyone know what code I should use?
    Thank you in advance for any help.
    Gee

    Making sure you've taken a backup. Pull the data into temp table and do the testing. once you satisfied with the output then do the update on the main table.
    create table #temp
    Range varchar(100)
    insert into #temp values('1-1,000'),('100000 - 200000')
    select replace(replace(Range,',',''),' ','') from #temp
    --update #temp set Range=replace(replace(Range,',',''),' ','')
    Validate the the output of the select statement.
    --Prashanth

Maybe you are looking for

  • Posting Stock In plant

    While doing stock posting(MB1C) in plant I am Getting the following Error. 1). Posting only possible in periods 2008/03 and 2008/02 in company code ENSU 2). IN MB1C DOCUMENT DATE = 10.01.2008 3). IF  I AM GIVING 10.03.2008(BASED ON THAT ERROR) IT THR

  • Change output of dictation

    Hello.. Is there any way to change the output from Mavericks Dictation feature? I know there are commands like "no-caps-on", but I want to be able to write variable names in different languages like camelCase, hyphen-separated, under_score, dot.notat

  • 720p 24 Question

    Ok, this is somewhat related to an earlier post that you all helped out with. The footage arrived from a shoot last week. The cameraman had the setting on the HVX as 720p 24. When we injested the footage via import P2 the clips all show as 59.94 fps

  • Video format n5800?

    may i know the video format for n5800.. I have movies on my pc i want it to convert so i can watch it my phone. Thankz.

  • TIME DATA IN vl06g

    i have an issue with the time data which is always defaulting whenever we use the transactions like example VL06G its defaulting the time data range between today and a week from now...can anyone help where this config is done not to populate any dat