Decimal problem in iWork US EU

I don't work a lot with numbers but want to start to use it a bit more but I seem to bump on the problem that I can't convert US created decimals to eu decimals. Here is the problem :
I get my sheets in txt format and when I import these in to Numbers, Numbers just deletes the separator as in the US they use "." instead of ",". When I import them in excel the seperator doesn't get deleted so I van chance the seperator to local settings. But I even can't find a way to get iWork show the original values.
My local language is Dutch (Belgian) and so is my iWork and OS. How can I fix this?
Message was edited by: Wawawa

I don't understand what is described.
If it is a US TAB separated values, it would be:
123.45⇥56,789.01⇥123,456.78
If we open the text file with Numbers on a French system, Numbers will fill three cells with what it decipher as three strings.
A clever soluce is to set, temporarily the System setting to Region = Suisse (French)
the numbers without thousand separator would be correctly deciphered as Numbers.
You will have to remove the thousand separators if some are used.
Save the document
Reset the System preferences to Region = Belgium
open the document
You will get the normal French format:
123,45⇥56 789,01⇥123 456,78
Yvan KOENIG (from FRANCE jeudi 18 juin 2009 21:34:22)

Similar Messages

  • Problems with iWork syncing with iCloud

    Hello there,
    So I have a slight problem -- my iWork is failing to sync with my iCloud. I have the entire iWork suite installed on my MacBook, but for some reason, iCloud isn't registering with it. I go on iCloud and it mentions purchasing it. But, the problem is, I already have it purchased. If someone could help with this, that would be MUCH appreciated!
    -I have attatched some screenshots.-

    Hi yantaialec,
    Once you have insured WiFi is on and Photo Stream is enabled, the only other thing I can think of is to make sure the Camera App is closed for the photo syncing to work.
    From iCloud: Photo Stream Troubleshooting
    "Ensure that Camera app is closed on the device where you took the photo. Photo Stream will not upload photos from an iOS device until the Camera app is closed."
    You may even want to remove it from the Multitasking Bar just to make sure it's quit and see if it streams.
    What does tech support say?
    ivan

  • Problems installing IWork Pro 9.0.3 Not sure where to place my question but I'm having problems installing iwork 9.0.3

    Not sure where to place my question but I'm having problems installing iwork 9.0. My MacBook Pro doesn't read the disk and ejects after a minute. I just bought the mac and iwork. Any thoughts?

    https://discussions.apple.com/community/iwork

  • Problem with iWork

    Hello Communitie,
    Im having a Problem with iWork.
    I have the newest MacBook Air with the latest Mac OS X Mountain Lion 10.8.3.
    So some Time ago I donwloadet iWork ( Trial ) from the Apple Website.
    I buyed it with a Serialnumber.
    Now 1 year later keynote, Numbers and Pages can't start.
    Every time if i cklick on Keynote nothing happens.
    Than when i click the logo in the dock it loads my presentation and when I wanna open
    my presentation nothing is happining.
    ' Close Keynote and try again'
    Can somebody help me?
    I'd reinstall 3x times.

    Remove iWork completely, you must use an an application removal tool to do this or it wont remove everything. Appcleaner will do this and its free.
    Once everything is deleted reinstall iWork and repair permissions:
    Applications > Utilities > Disk Utility > First Aid:   click on your system disc in the drive column and select Repair Disk Permissions

  • Query Decimal problem

    Hello experts.
    I have a problem with decimal on a query that its used in a VDT.
    In the dev system it works fine, but when I transport it to Prod system, the decimals doesn't represent fine.
    An example:
    dev system         prod system
    2,50 UN               3 UN
    Does anyone help me on this.
    Thks
    Vitor Ramalho

    hi,
      If you are not getting the decimal values let us say 2,50 instead of 2.50 then what you need to do is go to your user profile in production and select defaults tab and select the required decimal notation. The report should now show the values 2, 50 as 2.50.
    Hope it helps.........

  • Problem with iWorks attachments

    I recently purchased the latest version of iWorks so that I can send attachments to my iPhone 3G, but I have not been able to open any attachments saved in any of the iWorks formats (.numbers, .pages or .key). The files have the proper extensions and appear with the appropriate icon in mail on the iPhone, but will only open to a blank screen or with a very small question mark in the upper left hand corner. I have tried sending the attachments using Entourage, Apple Mail and my Mobile Me (web mail) account all with the same result.
    Is any one else having this problem? Any ideas on what is causing it?

    I can convert the files to other formats like Word, Excel, Power Point and PDF. This works, but it is my understanding that the native format of iWorks should be recognized in email on the iPhone. I would like to skip the conversion step.

  • Binary to Decimal problems

    Ok to give a background to why i am writing this and so everyone has a better understanding of exactly what it is that i want it to do it goes like this.... My girlfriend got a message from a friend that was all in ones and zeros, and no its not because something on one of the mail servers is messed up he meant for it to be that way. But through the process of converting the 8 digit binary numbers into decimal values so that the corresponding ANSI character could be found I decided that it was taking to damn long so i would just write a prog to do it for me and then i could send back an annoying long message to that guy with ease. Only there is a catch over the summer i went from hotshot for a newb to a newb without a clue, i more or less didnt write a single line of code over 4 months and now i am having problems.
    I wanted to write a program that could-
    -convert long strings of chars into all 8 digit binary code
    -as well as convert large blocks of 8 digit binary back into ANSI letter values and then ANSI characters
    -I want it to use a frame and have a relativly simple usage procedure
    Now that you know what i set out to do I can show you how far i got -
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.GradientPaint.*;
    public class BinaryToDec extends JFrame implements ActionListener
         // member variables
         JButton quit;
         JButton color;
         JButton convert;
         JLabel     label11_5, labelPassingWord;
         JTextField inputBinary, outputDecimal;
         Color      colorStore;
         String drawString;
         String bin;
         public BinaryToDec()
              drawString = "";
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setLocation(100,250);
              setTitle("Binary to Decimal");
              setSize(420,200);
              getContentPane().setBackground(Color.BLACK);
              getContentPane().setLayout(null);
              quit= new JButton("DONE");
              quit.setForeground(Color.GREEN);
              quit.setBackground(Color.BLACK);
              quit.setBounds(100,10,75,20);
              getContentPane().add(quit);
              quit.addActionListener(this);
              color= new JButton("Bkgnd Clr");
              color.setForeground(Color.GREEN);
              color.setBackground(Color.BLACK);
              color.setBounds(15,10,75,20);
              getContentPane().add(color);
              color.addActionListener(this);
              convert= new JButton("Convert to Decimal");
              convert.setForeground(Color.GREEN);
              convert.setBackground(Color.BLACK);
              convert.setBounds(185,10,75,20);
              getContentPane().add(convert);
              convert.addActionListener(this);
              label11_5 = new JLabel("Enter a Binary Number");
              label11_5.setBounds(75,60,250,20);
              label11_5.setForeground(Color.GREEN);
              getContentPane().add(label11_5);
              inputBinary = new JTextField(25);
              inputBinary.setBounds(5,40,225,20);
              inputBinary.setForeground(Color.BLACK);
              getContentPane().add(inputBinary);
              inputBinary.addActionListener(this);
              labelPassingWord = new JLabel("Your Deciaml Equivilant");
              labelPassingWord.setBounds(75,120,250,20);
              labelPassingWord.setForeground(Color.GREEN);
              getContentPane().add(labelPassingWord);
              outputDecimal = new JTextField(25);
              outputDecimal.setBounds(5,100,225,20);
              outputDecimal.setForeground(Color.BLACK);
              getContentPane().add(outputDecimal);
              outputDecimal.addActionListener(this);
              setVisible(true);
         }// end of constructor
         public void actionPerformed (ActionEvent evt)
              if(evt.getActionCommand().equals("DONE"))
                   System.out.println("Quit Caught");
                   int choice = JOptionPane.showConfirmDialog(null , "You Pressed " + evt.getActionCommand() + " are you sure?"
                        , "Close Frame",JOptionPane.YES_NO_OPTION);
                   if(choice == 0)
                        this.dispose();
                   if (evt.getSource() == color)
                        Color color = Color.lightGray;
                        color = JColorChooser.showDialog(BinaryToDec.this,"Choose a color",color);
                        getContentPane().setBackground(color);
                   if (evt.getSource() == convert)
                        bin = inputBinary.getText();
                        int strLength = bin.length();
                        int pos1=0, pos2=7;
                        String temp = "";
                        String Decimal1 = "";
                        String Decimal2 = "";
                        int binLength = 8;
                        int count = 0;
                             do
                                  temp = bin.substring(pos1,pos2);
                                  Decimal1 = Convert(temp);
                                  Decimal2 = Decimal2 + "" + Decimal1;
                                  pos1 = pos1 + binLength;
                                  pos2 = pos2 + binLength;
                                  count++;
                                  outputDecimal.setText(Decimal2);
                                  repaint();
                             }while((strLength/8) >count);
         }//end of actionPerform
         public void paint( Graphics g)
              super.paint(g);
         public String Convert(String a)
              int ctr=1, decimal=0;
              for (int i = a.length()-1; i>=0; i--)
              if(a.charAt(i)=='1')      decimal+=ctr;
              ctr*=2;
              String converted = "" + decimal;
              return converted;
         public static void main(String args[])
              System.out.println("Binary to Dec");
              BinaryToDec in = new BinaryToDec();
         }// end of main()
    }// end of class FrameExample1
    OK so other than that i decided to play with some of the paint functions i more or less stayed on task, at first i had it just convert 8 digit binary nums into decimal form using this -
              int ctr=1, decimal=0;
              for (int i = a.length()-1; i>=0; i--)
              if(a.charAt(i)=='1')      decimal+=ctr;
              ctr*=2;
    which i found in someone elses post and made some changes to, thank you someone whoever you are i hope you see this, anyways,.. then i decided i wanted it to check the length of a string and divide it by 8 assuming that it it a perfect block of 8 digit nums and then cut it into substring and go through the proccess of converting the binary to deciaml one piece at a time. I did it more or less, well it compiles right but whenever you put in more than one 8 digit binary number it ends up giving you some really strange decimal numbers and i cant seem to figure out why the hell it is doing this.??? I was hoping that some one could help me out.
    If you read this far than thanks for taking the time on my post :)

    Did you try to decode that message by hand and verified that it really is encoded the way you think it is?
    Here some code to try
    public static void decode(String fileIn, String fileOut) {
            try {
            FileReader in=new FileReader(fileIn);
            PrintWriter out=new PrintWriter(fileOut);
            char[] buffer=new char[8];
            int i;
            do {
                i=in.read(buffer, 0, 8);
                if(i==8) {
                    out.write(Integer.parseInt(new String(buffer),2));
            } while(i==8);
            in.close();
            out.close();
            } catch (Exception e) {}
        public static void encode(String fileIn, String fileOut) {
            try {
            FileReader in=new FileReader(fileIn);
            PrintWriter out=new PrintWriter(fileOut);       
            int i;
            while( (i=in.read()) >= 0 ) {
                String str=Integer.toBinaryString(i);
                for(int j=str.length(); j<8; j++)
                    out.write('0');
                out.write(str);
            in.close();
            out.close();
            } catch (Exception e) {}
        }

  • Decimal Problem in fields

    Hi,
    In Export invoice we are entering currency in USD.When we enter the value it accepts 3 decimal places.But it is stored as 2 decimal places in table.
    Eg.2.059 USD in invoice screen
    but in table 20.59 USD.
    What is the problem?where we can rectify this error?

    It will be stored with two decimal places. No issues with that. when you display this on your report, you have to specify the currency as USD and your issue will be resolved.
    write: v_amount to v_amount currency 'USD'.
    I am quoting from the help of the write statement below.
    This addition defines currency-dependent decimal places for the output of data objects of data types i or p. For all other data types, except for f, the addition is ignored. For cur, a three-digit, character-type field is expected that contains a currency key from the column CURRKEY of the database table TCURX in uppercase letters. The system determines the number of decimal places from the column CURRDEC of the respective row in the database table TCURX. If the content of cur is not found in TCURX, two decimal places are used. The following applies for numeric data types:
    In the case of data types of type i, a decimal separator is inserted at the position determined by cur and the thousands separators are moved accordingly.
    In the case of data objects of type p, the decimal places defined in the definition of the data type are ignored completely. Irrespective of the actual value and without rounding actions, the decimal separators and the thousand separators are inserted at the positions in the numbers determined by cur.
    In the case of data objects of type f, the addition CURRENCY has the same effect as the addition DECIMALS (see below). Here, the number of decimal places is determined by cur.
    If the addition CURRENCY with length specification * or ** is used after AT, it is used first and the output length is determined from the result.
    Note
    The addition CURRENCY is appropriate for the display of data objects of type i or p without decimal places, whose contents are currency amounts in the smallest unit of the currency.
    Example
    The output of the WRITE statement is "123456,78".
    DATA int TYPE i VALUE 12345678.
    WRITE int NO-GROUPING CURRENCY 'EUR'.

  • Problems with iWork '09 in Mountain Lion

    After installing Mountain Lion, I've got problems using the iWork '09 applications. I tried to update them, but it's still not possible to open or create a document. Would anyone have tips/ideas about this?

    Lex_Lex wrote:
    I found thisone and it helped me out :-)
    >>>>>>>>>>>>>
    sandersk
    Re: Is anyone having issues with Pages 09 or Keynote 09 after updating to Mountain Lion? 
    Aug 6, 2012 3:04 PM (in response to Sara167)
    This is what FINALLY worked for me after reinstalling and uninstalling and doing everything else mention above, and with a call to Apple's Support.
    Move the applications into the trash (of course) and then make sure you remove the folder called "iWork '09" in your Hard Drive Library (not your User Library) under Application Support. You can throw away your preferences too if you want, but I didn't. Then do a clean install. And THEN open the Mac App store and run the auto update (or just select Software Update from the apple menu).
    At first I thought it was too simple of a fix, but it indeed fixed everything. All iWork apps opened, opened files (they were saying they couldn't be opened) and Keynote finally worked (it was crashing and erroring out). I can now use all iCloud features, and everything, no problem.
    I am pretty tech savvy and felt silly for not even thinking of this and how easy it was to fix. I even used an app uninstaller to make sure it removed all of iWork's little bits, but it didn't do that last folder.  It has been causing problems for a week and am so glad I contacted customer support. You can contact them if you just got Mountain Lion. Just sign up to have them call you or give them a call if this doesn't work for you.
    Would love to hear if this worked for other people.
    This worked perfectly, I've been fighting with Numbers and Pages for a couple of weeks trying to get them to update, because each time I would open any of my documents/files it would pop a window saying there was an update available, bring me to the Mac App Store then do nothing, no update would show.  After following the procedure in the post you linked it worked.  I'm finally updating.  Whew, saved me money, I really didn't want to have to purchase all those again from the App Store.

  • How to uninstall Snow Leopard? major font problems in iWork, iLife

    All iWork and iLife apps have shocking font problems... so much so that I need to uninstall Snow Leopard and wait for Apple to sort it out. Does anyone know the best way? And how is it possible that these problems are occurring with Apple's inhouse software? Other stuff seems to be working OK so far for the most part. For a bit more detail on my problems, including sample images:
    http://bit.ly/309G0o

    Snow lizard cost me $27.000.00 in unusable fonts. We installed snow lizards (what I'm calling it now) and lost 934 fonts. Say 40 were bad fonts and 896 were type 1 postscript. When I explained to the tech person how big this was to the print community, he had no clue. - I'm still waiting to hear back. I have a case number but now I read from another post they knew Snow Lizard would do this. At 30.00 per font that is almost $27,000 to replace what they thought wasn't important. But in the print world of design this is huge. Every layout and ad that needs an update - which take a few minutes is a whole rework. They have no clue what business a mac computer is in or they don't see us as important.
    I did find if I load those fonts or the font missing into the InDesign font folder I can get the old ad to make it to pdf. But photoshop and illustrator, I'm screwed. And if I didn't outline the type in illustrator - it's gone. I asked the tech guy if I can go back, and undo this slimy lizard and he said probably not if we do backups. We do backups every hour - this is the print business. I feel forsaken. I've been with apple for so many years.

  • Problem with iWork updates after iOS 5.1 install

    iTunes showed updates for my iWork apps, but indicated I needed to update to iOS 5.1 first.  I updated to iOS 5.1, and then did the updates for Pages, Keynote, and Numbers.  The Pages update was successful.  The updates for Keynote and Numbers will not load, but now I can't use either app at all.  The app shows up with the loading ticker at the bottom, but when touched, indicates "Waiting", then a message comes up that says "Unable to Download Application", with choices for "Done" or "Retry."  "Retry" does nothing and the message comes up again.  I've tried restarting and resetting with no success. 
    Thoughts?
    Thanks.

    Here's how to fix this.
    1) Get your playlist in the order you want in iTunes.
    2) Create a new playlist and drag all the songs into it from the sorted playlist.
    The next 2 are important!!!
    3) Do not change the order using any of the column headers.
    4) Do not select Copy To Play Order.
    5) (Optional) Delete old playlist, rename new playlist.
    Sync your device.
    The problem is in the sorting.  If you don't sort your playlist via the column headers you're OK. 
    Hope this helps.

  • Problems with iwork

    I tried opening a "pages" document and rcvd error msg....files that iwork needs are missing ....I don't have the dvd as the software came preinstalled. When I attempt to update from App Store everything shows up to date. How can I get get Pages to work properly?

    Thanks fruhulda,
    I was just waiting for the iTunes receipt, which came in yesterday.
    I was charged the full €17.99 for Keynote! I can't remember how/where I originally purchased Keynote (and Pages and Numbers), but all I know now is that because I upgraded to Mountain Lion, I had to purchase again something that I already owned. I know I should have had the original download or original media, but I could not find it when I needed it.
    I am truly sorry I upgraded to Mountain Lion. It broke more than it was worth and I am still finding problems.
    For me the issue is that when I fire up Keynote, it is because I need to do something there and then. I don't start it up for idle amusement. On Sunday I need to get a presentation prepared. I did not need the time being wasted trying to fnd a solution; uninstalling the now defunct version; and then downloading and installing a new version.
    Yes, the solution worked! But for me, it was a waste of time and money.
    Don't get me wrong, I truly appreciate the support, especially as it is freely given. My beef is with Apple on this issue.
    Thanks,
    Niall

  • Problem installing iWork

    person deleted trial version of iWork, and now cannot install complete version.
    keep getting error below...
    You cannot continue. There is nothing to install.
    The trial is nowhere to be found, and I have checked numerous times. This person needs to install this asap, and I cannot do so. Please help. Any and all input from you fellow mac lovers would be greatly appreciated.
    Sincerely,
    Tim Cuccaro

    Tim,
    The trial didn't need to be deleted. All that needed
    to be done was to start the program and use the
    serial number from the purchased version. But once
    any part of the trial is been deleted, all of it
    needs to go before you can install a new version.
    That's the problem your friend is experiencing --
    he/she has left behind some Pages-related files that
    the new version mistakes for the full program. What
    you need to do is to do a Spotlight search on the
    following words: Pages, Keynote, iWork. Anything
    that has one of the those words in it needs to be
    trashed before the new version can be installed.
    Hope this helps.
    Thanks, I figured that was the problem. I'm a teacher, so tomorrow when school starts up again, I'll get her ibook and give it a whirl. Thanks again.
    Tim

  • A confusing problem with iwork 08

    i'm posting again since my first effort has not gotten a response which resolved my issue. i will try to provide more detail.
    yesterday, i launched pages 08, and it crashed on launch. then it crashed on launch a number of times in a row. out of curiosity, i tried keynote and numbers, and they too crashed on launch. i deleted the plists and tried again. made no difference.
    i have two other accounts on the machine, root enabled long ago and rarely (almost never) used, and a non-admin account i created not that long ago for troubleshooting purposes. for fun, i tried iwork in both those accounts, and they launch and run with no problem. the original document i wanted to open launched in both accounts with no problem. so i guess the problem is unique to my main account.
    for information purposes, one week ago, i was listening to a playlist in itunes when i experienced a sudden unexpected power outage. mac rebooted automatically, and a quick check of itunes seemed to show no issues, so i went merrily on my way. now it seems that possibly iwork was the corrupted casualty of that event.
    some info from the crash log generated on launch =
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: (index >= 0) && (index < (_itemArray ? CFArrayGetCount((CFArrayRef)_itemArray) : 0))'
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x965beee8 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 0
    1 libobjc.A.dylib 0x93f596a8 objcexceptionthrow + 68
    2 com.apple.CoreFoundation 0x965bee4c +[NSException raise:format:arguments:] + 136
    3 com.apple.Foundation 0x94de1e64 -[NSAssertionHandler handleFailureInMethodbject:file:lineNumber:description:] + 116
    4 com.apple.AppKit 0x90db562c -[NSMenu itemAtIndex:] + 188
    5 com.apple.AppKit 0x910aba84 -[NSSpellChecker _initUI] + 256
    6 com.apple.AppKit 0x910ab968 -[NSSpellChecker spellingPanel] + 28
    7 com.apple.iWork.Pages 0x00004560 -[SLOnDemandSpelling pUpdateUI:] + 56
    8 com.apple.CoreFoundation 0x965ccb50 -[NSSet makeObjectsPerformSelector:] + 200
    9 com.apple.AppKit 0x90d96054 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1264
    10 com.apple.AppKit 0x90d8d658 loadNib + 224
    11 com.apple.AppKit 0x90d8cffc +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZonewnerBundle:] + 840
    12 com.apple.AppKit 0x90d8cbd8 +[NSBundle(NSNibLoading) loadNibNamedwner:] + 336
    13 com.apple.AppKit 0x90d8c8c0 NSApplicationMain + 332
    14 com.apple.iWork.Pages 0x00003f58 main + 236
    15 com.apple.iWork.Pages 0x00068768 _start + 756
    16 com.apple.iWork.Pages 0x0006846c start + 44
    i see a couple plist files mentioned here that i cannot find in either system or user library, specifically com.apple.CoreFoundation and com.apple.Foundation, as well as the others mentioned.
    can anyone tell me what's going on, and how i might resolve this issue?
    thanks very much

    Hello
    As an old time user, I gave you a workaround.
    There are thousands of files in the system.
    Searching for the corrupted file is like searching a needle in a haystack.
    Applying what I wrote would give you a working system but if you refuse to do that, I just may tell you: good luck
    Yvan KOENIG (from FRANCE mercredi 12 décembre 2007 12:27:35)

  • Decimal Problem in Document Amount..

    Greetings for the day,
    In table amount showing properly. I mean decimal showing only 2 digits but
    in my document it is showing 3 digits. Earlier it was worked properly but
    since today morning I am facing this problem. I checked in T.code OY04
    there is no option for 2 decimals hence I haven't maintained local currency
    with any of the available options(1,3 or 5). So how to set in document
    decimals as 2 digits?
    Kindly revert me back as soon as possible with your valuable suggestions.
    Thanks & Regards,
    Vinod.

    Just check in OY01
    SU3 - User profile
    Do not give anything in OY04 - I have checked for my currecny GBP. I don't even find my currency in OY04
    It seems this setting is not needed
    Thanks

Maybe you are looking for