Problem summing $-style digits

When I open XLS file with russian finance style numbers (X XX,XX р.) it becomes in style X XX,XX Rbl
It's not a problem, but some of cell become numbers like 10 000,00 Rbl but some cells becomes text "10 000,00 Rbl" and of course don't sum with number cells. So, imported Excel sheet shows different total value: correct in MS Excel and incorrect in Apple Numbers.
Of course when I manually or via Find delete all "Rbl" it becomes "руб." but in some cells it becomes text again. After that I delete via Find command all "руб." and every cells become numbers and SUM formula works correctly but view of those cells stay the same! You know, because text "10 000 руб." after deleting becomes number 10 000 but because style is finance it becomes again 10 000 руб. but not text, numbers. So when I look on my table in Apple Numbers I cannot know is there some problem with results in formula until I take a calculator or open the same table in MS Excel and compare results!!!

Hello
some tracks
Check which is the decimal separator defined in the System Preferences "International".
Given your samples it would be the comma but I'm not sure.
I don't use Microsoft products but one may guess that when the import parser meet a number formatted with a space (maybe a sticky one) between groups of three digits, it treats the number as a string, not as a number.
A simple tip may help you to find the strings.
Insert a column on the right of the values to check.
Assuming that values are in column B insert a new column C and put the formula
=B*1
in every cells of this column.
You will get a red triangle on the right of every string.
You may use a more sophisticated formula:
=IF(ISERROR(B*1),"string","")
Yvan KOENIG (from FRANCE jeudi 22 novembre 2007 19:12:03)

Similar Messages

  • Problems printing a digitally signed PDF

    Hi
    I'm having problems printing a digitally signed PDF on a dell 968 AIO printer. It works fine on the a majority of printers but we have had reports of issues with other models as well as the dell printer.
    The PDF prints fine when opened in Adobe Reader 9 (blue bar appears at top to indicate signed pdf).
    When opened in Adobe Acrobat 7 on the same PC the first pages prints correctly but the rest of the pages print only a few lines in a huge font and the characters are backwards.
    The pdf does not always open in reader when accessed through the web it will sometimes open with acrobat is there anyway to control this?
    Does anyone know why this maybe happening?
    Thanks
    Claire

    Thanks for the reply Mike. I think I've got a little further with this problem now. There seems to be a problem printing the signed PDF in adobe reader 7 as well as acrobat 7.
    I have uninstalled acrobat from the machine but the problem still happens with reader 7.
    Does anyone know if reader 7 and below has any known issues printing signed pdf's. It works fine on 8 and above.
    thanks
    Claire

  • [svn:fx-trunk] 11707: Fix incremental compilation problem with styles.

    Revision: 11707
    Author:   [email protected]
    Date:     2009-11-12 10:52:49 -0800 (Thu, 12 Nov 2009)
    Log Message:
    Fix incremental compilation problem with styles.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-24173
    Reviewer: Paul
    Tests run: checkintests
    Is noteworthy for integration: No.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24173
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java

    You have used elements like header, footer, footer1 and nav without using the correct DOCTYPE declaration. Replace the first line of your code with
    <!doctype html>
    Also have a look here for other problems http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fhome.surewest.net%2Fstorytales%2F test%2Fforposting.html
    After the above has been fixed, please come back here to fix the remaining problem(s)
    Gramps

  • Problemi con Adobe digital edition - licenza

    Salve, ho un problema con ADOBE DIGITAL EDITION, ho aperto un libro senza licenza, ma poi ho creato il mio account per ottenerla e non ci sono riuscito, quindi riesco a leggere il mio libro solo sul mio pc e non sugli altri dispositivi

    Éste es el for de Adobe Reader. El de Digital Editions está aquí:
    http://forums.adobe.com/community/adobe_digital_editions

  • TS2634 Hi I have problem sum body still my Iphone 4s. what I can make ?

    Hi I have problem sum body still my Iphone 4s. what I can make ?

    This article shows what to do if your phone got stolen:
    http://support.apple.com/kb/ht2526

  • Problems with my Digital Vault account

    I have been having problems with my Digital Vault account lately.  For about a week I was told that there was no connection with the server and then I started to receive messages that there was insufficient space left in my account to enable backups of my usual documents.  I knew this was incorrect because my saved documents usually only take up around 50% of the available space.
    In order to correct the problem I decided to delete all my saved copies and then re-upload them.   They have all been removed but my 'My Vault' page still shows that something like 2.95 GB of the available 5 GB has been used. 
    I cannot understand this as  my vault should be empty at the moment .    Has anyone experienced similar problems ?    What can I do to empty my vault so that I can reload my valued documents ? 

    Hi badsworth,
    If you can fill in the contact us form in the "about me" section of my profile, we can take a look into this for you.
    Cheers,
    Chris
    BT Moderator Team.
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Sum Of Digits

    HI all,
    i am writing a java code for sum of numbers upto a single digit
    the code is perfectly well, its running fine.
    but i want to perform this kind of task in another style with some conditions ..
    1. No looping should be there.
    2. No conditional expression.
    3.Variable must be a single.
    4. i want to use only +,- ,% operators.
    can anyone show me the way how to do it.
    My code goes something like this.....
    import javax.swing.*;
    class Digit{
         public static void main(String s[]){
              int num=Integer.parseInt(JOptionPane.showInputDialog("Enter A Number"));
              int sum=0;
              while (true){
                   while(num>0){
                        int m=num%10;
                        sum+=m;
                        num=num/10;
                   if(sum>9){
                        num=sum;
                        sum=0;
                   else
                        break;
              System.out.println("Sum Is="+sum);
    }thnx in advance

    plz help me out of this problem quickly .
    n i want to maintain only a single variable to store number http://www.catb.org/~esr/faqs/smart-questions.html#writewell
    How To Ask Questions The Smart Way
    Eric Steven Raymond
    Rick Moen
    Write in clear, grammatical, correctly-spelled language
    We've found by experience that people who are careless and sloppy writers are usually also careless and sloppy at thinking and coding (often enough to bet on, anyway). Answering questions for careless and sloppy thinkers is not rewarding; we'd rather spend our time elsewhere.
    So expressing your question clearly and well is important. If you can't be bothered to do that, we can't be bothered to pay attention. Spend the extra effort to polish your language. It doesn't have to be stiff or formal - in fact, hacker culture values informal, slangy and humorous language used with precision. But it has to be precise; there has to be some indication that you're thinking and paying attention.
    Spell, punctuate, and capitalize correctly. Don't confuse "its" with "it's", "loose" with "lose", or "discrete" with "discreet". Don't TYPE IN ALL CAPS; this is read as shouting and considered rude. (All-smalls is only slightly less annoying, as it's difficult to read. Alan Cox can get away with it, but you can't.)
    More generally, if you write like a semi-literate b o o b you will very likely be ignored. So don't use instant-messaging shortcuts. Spelling "you" as "u" makes you look like a semi-literate b o o b to save two entire keystrokes.

  • Problems getting multiple digital signatures in Acrobat Reader form

    I have a Word document that I converted to a form in Acrobat 9 Pro. I added two separate digital signature fields, one for a conference presenter and the other for the conference planner to sign. There are also a number of text fields where presenters give bio information. I saved the document using the Extend functionality so that a user who only has Acrobat Reader would be able to fill in the form, sign/save it, and then send it on to the conference planner. The first part is working fine. However, once the first user signs/saves the document, the extended functionality goes away. When the conference planner receives the document, it is essentially locked. She cannot sign and save.
    Is what I'm trying to do possible? I feel like this would be fairly commonplace, but I may be going about it the wrong way. Thank you for any pointers.
    -Brian 

    Hi Steve,
    I have met similar problem. Using Adobe 9.4 I have prepared document with three signature fileds. I did signature in one of the field and then did extension to Reader. When I checked the propierties of document it occured that signing was not allowed. I couldn't sign it second time (not saying of Reader's user).
    Is there missing any plug-in or something is wrong with a configuration (mentioned "Nothing has happened when signed" was set up)?
    Wlodek

  • Importing Word into InDesign, problem with styles

    OS 10.6, CS5
    Hi everyone,
    Does anyone have any experience with importing styled Word docs into InDesign?
    Editors style their Word documents with some basic styles (Text, References, Headline, etc.) using a Word template that I created. Designers use import options to match the Word styles to the ID styles. This worked fine in Word 2004 and InDesign CS3: Word  "text" style would map on import to the InDesign "text" style, even though they had totally different attributes. Superscripts, italics, etc. would be respected as local overrides in InDesign.
    Then we upgraded to CS5. Automatic mapping on import no longer seems to work: After importing text, all the styles in InDesign have local overrides assigned to them that don't make sense (hyphenation exceptions, tab settings). So I'm left with importing the Word styles, using auto-renaming so that InDesign explicitly does NOT match styles.
    Then delete the Word styles one by one from the paragraph style panel, replacing with the desired ID style.
    This has gone on for several months and we've now upgraded to Office 2011 but that hasn't solved the problem.
    With Word 2011 docx files, the import works almost like it did in CS3, the styles almost come in cleanly: If the style in Word has NO local overrides, such as italics or superscripts, the InDesign style is correctly applied. The problem is those local overrides in Word--InDesign not only respects the italic or superscript, it also respects the font attribute. All the Word styles are Times New Roman so all superscripts in InDesign are coming in as superscript + TNR. (see screenshot)
    Are we left with our original work-around? Importing styles then manually deleting and replacing them?
    This is frustrating because it used to be smooth and seamless and while some new features of CS5 are great, it's annoying that it's broken this fundamental function!
    I've tried saving the Word files as doc or rtf instead of docx but this doesn't make a difference in this problem.
    Any help or advice would be much appreciated.

    I'm an author / publisher.  I write in Word and I publish with InDesign. When I'm in the review stages, I like to edit my text in Word, so I export the text as an RTF.  When I import it back into InDeisgn I often find that some of the styles have annoying overrides from Word that break things.  (1) Paragraph style stuff about hyphenation and (2)  Characters style stuff about  Character direction: Left-to-Right style.
    * Easy global  fix:  select the whole text open the Window | Style | Paragraph window, and click the button on the bottom to remove all overrides. And do the same for the Window | Style | Character window. Before doing this, I like to check that I don’t have any italics that are in the file as overrides rather than being in there as part of a header style or as part of the Emphasis style that I try to use throughout the text instead of just an italic override. It makes me uneasy to remove all overrides, as I always worry there might be an important one I could have kept.
    * (1) Specific fix for the hyphenation overrides: Make sure the hyphenation settings in the individual InDesign paragraph styles match, so far as possible, the Word global hyphenation settings in the Page Layout | Hyphenation dialog of Word.    InDesign will import any Word hyphenation settings that don’t match the InDesign doc styles as overrides.
    Specifically,  set InDesign Hyphen Limit to ( say) 1 and set Word | Hyphenation | Hyphenation Options | Limit consecutive hyphens to the same number (say) 1. Also set InDesign Paragraph Style Hyphenation | Hyphenation Zone to (say) 0.5” and set Word | Hyphenation | Hyphenation Options | Hyphenation Zone to the same number (say) 0.5”.  And turn off all the InDesign optional hyphenation check boxes at the bottom of the dialog, and the turn off the two check boxes in the Word Hyphenation Options box as well.In Word you should also set Hyphenation | Automatic.  If you cautiously set Word Hyphenation | None the import will throw a “Hyphenation” override on the hyphenated paragraph styles, even though this maikes no sense.
    You may still pick up some hyphenation related overrides on your heder styles, if you have set the headers not to hyphenate.  You can either dump the overrides in InDesign or you can set your header styles to hyphenate…and be careful not have any headers actually be longer than one line.
    (2) I still haven't found the fix for the Left-to-Right text override.

  • Problem with a digital copy what should i do?

    received the message "an unknown error occurred (-50)" when down loading a digital copy and it won't finish the download I keep getting the same message. My code was good the download started but at 70mb It stopped and I got the message. I've down loaded dozens of digital copies but i've never seen this message before. How do I get it start and finish the download?

    Maybe there is a problem with OOPP
    See http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.0 r42
    # Java Plug-in 1.6.0_05 for Netscape Navigator (DLL Helper)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)

  • Importing word file - problem in style capturing

    Hi All,
    I have a problem in importing the wordfile into Indesign CS3.
    We have created all the Para & character styles in Indesign CS3.
    The same style was created in Word also, we have a set of guys to do the pre-editing the input wordfile which we got from client.
    We have applied all the character and para styles in Wordfile, which uses the same names in Indesign CS3.
    When we import the wordfile into the Indesign CS3 all the para & character shows "+" marks and the style was not applied.
    What will be the problem, why it is behaving like this, we have checked the "import options" while importing the word, but it fails.
    Is anyone have these type of problem.
    We need to know that how to solve this, since the reference part has lots of character style applied, we cannot clear the "+" manually in Indesign CS3 to solve.
    Kavya

    > So we like to open a topic reg. this to get solved.
    This is a user-to-user forum. We're all just users like you.
    From what I could tell from your post, Indesign is working as intended.
    There is no solution because there really is no problem.
    > Giving char style for bold and italics and special character will
    > won't solve this, after importing into the template we need to clear
    > the overrides that become manual one and we don't know what else has
    > changed in the content, this will leads to problems.
    Yes. Clearing overrides does clear all non-styled formatting, which is
    why I suggested using Find/Replace to find the good formatting before
    you clear the bad formatting. Specifically, you mentioned wanting to
    keep bold and italic. The other character-level formatting from Word
    that you will probably want to keep is:
    --Strikethrough
    --Underline
    --Superscript
    --Subscript
    --Small Caps
    --All Caps
    --Bold Ital
    --Bold
    --Ital
    There may be other character-level unstyled formatting you want to keep.
    This depends on what the author put into the file.
    If you're getting the same kind of files all the time, you can develop a
    routine for these Find/Replaces. You can save your Find/Replaces, use
    GREP, even string all the Find/Replaces together in a script. What you
    can't do is expect Indesign to know which unstyled formatting is "good"
    and which formatting is "bad". Only you know what you want to keep and
    what you want to throw away.
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • Problem dialling certain digits with Lumia 800

    In order to find out how much pre-paid phone credit I have with my carrier, I can dial #123#, which works with my SIM in my iPhone (unlocked) and I get a response giving my available credit. However, when I try to dial this combination of digits with the same SIM in the Lumia 800 (unlocked), I always get the message 'failed'. Can anyone suggest how I might dial #123# on the Lumia? Thanks

    Hi GeoffN,
    Usually service codes are in the format *[number]#
    For instance by dialling *100# on my Lumia 800 I will get my calling credit with my carrier.
    Hope this helps,
    Kosh
    Press the 'Accept As Solution' icon if I have solved your problem, click on the Star Icon below if my advice has helped you!

  • Problem with Style, Style2, Style3 in style table LVC_S_STYL.

    Hi Gems,
    I have an ALV output with field MATNR as disabled, HOTSPOT enabled and NO F4.
    Now based on certain conditions i need to make the field as editable, F4 enable, Remove Hotspot only for some records.
    I am using LVC_S_STYL wherein i am filling the fields style, style2, style3, style4 as below.
                wa_editcell-style = cl_gui_alv_grid=>mc_style_enabled.
                wa_editcell-style2 = cl_gui_alv_grid=>MC_STYLE_HOTSPOT_NO.
                wa_editcell-style3 = cl_gui_alv_grid=>MC_STYLE_F4.
    Whatever value i pass to STYLE is working But whatever values in  others style2, style3 are not showing any effect.
    Please suggest me what should i do?
    Thanks
    Dan

    Dear Dan,
    I have some issues with lvc_s_styl.
    In my ALV, i am having check box as a column and i am using 'style' for handling some other fields based on checkbox.
    I have a situation where i am having buttons as a column. I have to handle some other fields when this button is clicked.
    But the problem is since for the first time i tried to use 'style' for both operations (both button and checkbox), they were getting overwritten. so once i click the checkbox, the buttons were disappearing. As a matter of fact, i tried to handle checkbox with 'style' and button with 'style2'. But the buttons are not getting displayed even for the first time. Any suggestions. 
    Regards,
    Sandeep Sivan

  • Loading xml data to a oracle database problem in style sheet

    Hi,
    I Have one small Problem While loading xml data to a oracle database.
    In the XML i have the Columns and Data Like this.
    <Data>
    <TRAN>
    <Type_Trs>A</Type_Trs>
    <T1>2</T1>
    <T2>3</T2>
    </TRAN>
    <TRAN>
    <Type_Trs>B</Type_Trs>
    <T1>2</T1>
    <T2>3</T2>
    </TRAN>
    </Data>
    I have TRAN Table having Field Like this.
    TRAN(Type_Trs,T1,F)
    Note:- The XML Column T2 is Not matching with TRAN Table Column F
    I want to fetch T2 data into F column.
    When I am fetching the xml data into oracle table only
    one row is fetching.
    Can You help me
    To load the the all the record of XML data into the Oracle Table
    What will be my XLS Style Sheet File Please
    suggest me.
    Regards
    MBR
    Thnks in Advance

    Hi MBR
    You would be better posting your question to the general XML forums:
    http://forums.oracle.com/forums/category.jspa?categoryID=51
    This is purely for XML/BI Publisher where we get the data back out of the db :o)
    Tim

  • Problems with style sheets

    I switched to Pages about one year ago because I then found that style management was easy and straightforward compared to Word. I updated to Pages V2.0 in January and since then I have been annoyed with the new way style sheets are managed.
    In V1.0, when copying / pasting text from Word to Pages, styles would not been copied leave the style sheet clean.
    Now, when copying / Pasting text from Word to Pages, the whole Word style sheet is copied in Pages (whatever paste option is used) messing everything around
    I believe this is a bug but I did not get any straight answer from Apple support. Do you face the same problem? Does anyone have a work around?
    Cheers.

    Philippe,
    actually it will indeed be the easiest to remove the Word styles when you're finished with your text.
    You should be aware that Pages will ask you for a style to replace the one you're deleting, if that style is still assigned. If you Paste and Match Style, this shouldn't be a problem.
    I wouldn't number Pages styles but use a prefix, e.g. "pg_". This will still keep the sorting you're probably now used to. A prefix is also usefull if your Pages styles use numbering (text style) since Pages automatically adds a number in front of the style name. This could lead to some confusion.
    Additionally, you should, as suggested by dwb, send feedback to Apple and ask to change the behaviour of Patch and Match Style.

Maybe you are looking for

  • Powershell and Client Object Model - no error thrown if user is added more than once to same site or group

    Hello All - I am trying to add a user to a SharePoint site using PowerShell like below:- New-SPUser -UserAlias MyDomain\jan20a -Web http://SPServer/sites/MySite If I execute the above more than once, SharePoint does not throw that user already exists

  • APEX_MAIL - how to set the SMTP Domain

    APEX Version: 3.0.0.00.20 I need to be able to set the domain for mail sent from my application. I have used package UTL_SMTP in the past and have set the domain in the call: utl_smtp.helo(conn, smtp_domain); Is it possible to set the domain when usi

  • Table Updates and TableCellEditors

    This has probably been asked before but nonetheless I have a Table in a GUI that is instantiated from a model with data taken from a database. Everything is OK except when adding a a row. I have a method that inserts a blank row at the end of the dat

  • Condition type field when Define Pricing Procedure Determination

    Hello Gurus,     there is a condition type field when Define Pricing Procedure Determination. what does it mean ? Many thanks, Frank Zhang

  • Manual Condition Types

    Hello, I have create a new manual percentage condition type to be used with POs. Is there a way that I can have this as a fixed percentage so that every time I use this condition on a PO it automatically populates the rate field with the desired perc