Error adding up 5 numbers! (or is it me?!)

Hi -
I've set Numbers to add up a column of 5 numbers and put the total in a different cell. But it's adding up the numbers wrongly. Can anyone tell me what I'm doing wrong?
I've put a screenshot on my Public iDisk:
https://public.me.com/glovepuppet/
(It's the .jpg called NumbersMOZ001)
The formula is shown as SUM(H2:H8) which makes 556.02, so why has it put the total as 556.00?
(I know it's only 2p, but it's irritating!)
Help please!
Andy

This behavior was described many many times.
The values which you sum are the result of calculations.
I guess that you use =my_formula
which may return values with more than two decimal digits.
When you ask a cell to display two decimal digits, it displays the rounded value *_but, happily, it doesn't change the stored value_*
So you aren't summing what you see but what is stored.
Here is your error.
To sum what you see, you must design formulas whose result is what you see.
=ROUND(my_formula,2) is what you need.
So, to be short,
Numbers did perfectly what you urged it to do.
Next time, before writing formulas remember that *_computers are just efficient idiots_*.
Yvan KOENIG (VALLAURIS, France) vendredi 26 novembre 2010 17:26:43

Similar Messages

  • Bizarre error adding Numbers in Flex 4

    I'm having a bizarre error adding numbers in Flex 4.  In all cases, I'm getting the correct result, but sometimes I'm getting extra precision with a 5 at the end.
    For example,
    If I try to add 5 and 1.56, I get 6.5600000000000005
    a lot of numbers add correctly, it's just certain combinations that have the problem.
    Here is a small app that demonstrates the issue:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
         <s:layout>
              <s:VerticalLayout/>
         </s:layout>
         <fx:Script>
              <![CDATA[
                   protected function button1_clickHandler(event:MouseEvent):void
                        var num1:Number = Number(number1.text);
                        var num2:Number = Number(number2.text);
                        var result:Number = num1 + num2;
    //                    result = 1.56 + 5;
    //                    result = Number(1.56) + Number(5);
                        resultLabel.text = String(result);
              ]]>
         </fx:Script>
         <s:TextInput id="number1"/>
         <s:TextInput id="number2"/>
         <s:Button label="Add Values" click="button1_clickHandler(event)"/>
         <s:Label id="resultLabel"/>
    </s:Application>
    Any assistance would be appreciated!
    Thanks!
    Jon Keener
    [email protected]

    This question comes up all the time. It's a Fact Of life of modern microprocessors and computer languages, which implement floating-point arithmetic using binary fractions (1/2, 1/4, 1/8, etc.), not decimal fractions (1/10, 1/100, 1/1000, etc.), according to the IEEE-754 spec. Many decimal fractions, such as 1.56, cannot be exactly represented as a finite binary fraction. (Or the exact representation in binary might be finite but require more fractional digits that the spec allows.) Although your source program says "1.56", it gets compiled and executed as the IEEE-754 binary-fraction that is closest to 1.56, but it isn't exactly equal to 1.56, and then this slight error gets propogated through calculations, and the conversion back to decimal is again inexact.
    Generally, people just use methods like toPrecision() to round things off a bit and hide this problem. Or they go write or find a (much slower) ActionScript library that does true decimal floating-point arithmetic by storing decimal fractions rather than binary fractions.
    Gordon Smith
    Adobe Flex SDK Team

  • Adding two double numbers is a problem

    Hi friends..
    when we try to add the two double numbers say,
    119.52, 10.00
    here we should get 129.52
    but it is giving as 129.51999999999998
    Here i want to round this to two digits after decimal point
    if i round the above value i will get 129.52 and the problem will be solved.
    But we don't know exactly on what basis we are getting the sum as 129.51999999999998.
    Assume that, tomorrow when we are adding some other numbers we may got like
    129.51444444444448
    when we round this we get 129.51
    but actually we have to get 129.52.
    If anyone know why the system is giving that wrong sum amount, please give solution to avoid this.
    To solve this problem, i tried by converting the double numbers to integers and adding these integers and finally converting the sum into double...like
    if
    d1= 119.52
    d2=10
    int x = (int)(119.52*100.00);
    int y = (int)(10.00*100.00);
    int z = x + y;
    double d = (double)(z)/100;
    This is working for this case...
    But when we are applying this approch to other numbers it is giving problem....
    i.e, if i convert like below
    int x = (int)(72.46*100.00);
    this should give x=7246
    but it is giving x=7245
    What is the solution for this problem...please give immediate reply.....

    Assume that, tomorrow when we are adding some other
    numbers we may got like129.51444444444448
    That isn't going to happen. The numerical computations are deterministic. The problem lies in your understanding of how numbers work.
    This has been repeated before so if you want more detail I suggest you search the forums for discussion on precision and double.
    Computers store numbers in binary. The number you are trying to represent is a decimal number. This produces an error in precision.
    The same problem exists in decimal notation. Decimal notation can not accurately represent one divided by three (in decimal 0.33333333.....).

  • Issues in IDoc Sender Scenario:IDoc  with errors added

    Hi all
             Am working on an IDoc to JDBC scenario. In R/3 system, I have created distribution model, partner profile, RFC destination and port.The IDoc is generated and is sent to XI successfully. But in XI , there is no entry in SXI_MONITOR for this (unfortunately IDX5 is not available in the XI server! ;as of now). Instead an entry is made in WE05 and WE02 with stautus 56(IDoc with errors added). In the status record:
    status 56 : External segment name E2KOMG003 cannot be interpreted
    status 60 : Basic IDoc type COND_A03 could not be found.
    And the segments displayed in data record  are different from the segments in the data record of the IDoc generated at R/3. (say for E1KOMG at R/3, E2KOMG003 in XI).Earlier the flow was working fine and the DB table was updated successfully. And the entire stuff is believed to be 'unmodified' .
    Would any one help in resolving the issue.
    Thanks,
    Chilanka

    Hi,
    >>>>I have created partenr profile in R/3.Need I create a partner profile in XI for R/3 system?
    no you cannot create any partner profiles in XI
    for more about IDOC configuration in XI check :
    <a href="/people/michal.krawczyk2/blog/2006/10/11/xi-new-book-mastering-idoc-business-scenarios-with-sap-xi"><b>Mastering IDoc Business Scenarios with SAP XI</b></a>
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Error adding buffer entry when using Asynchronous mode of JRA and JCO call

    Enviroment: XMII 12.1.4 / CE EhP1 SP03
    When I using SAP JRA Function Call or SAP JCO Funciton Call in transaction, it works well when I choose 'Process Type' as 'Synchronous processing' in 'Data Buffering Configuration' tab. But when I use 'Asynchronouse processing' it doesn't work.
    I check the Netweaver logs, there some logs like following:
    Error adding buffer entry (com.sap.xmii.dataqueue.DataBufferManager)
    Couldn't add buffer entry (com.sap.xmii.dataqueue.DataBufferManager)
    ManagedConnectionImpl.dissociateConnections(), dissociation of a non-cci transaction, H1, C1(com.sap.mw.jco.jra)
    how could I solve this problem?

    Solved after deploy 12.1 SP05 (xMII 12.1.5 build 91)

  • With holding tax error FZ379-"Error in WHT certificate numbering"-Thailand

    Hi,
    We are receiving an error "FZ379 - Error in WHT certificate numbering" while posting an outgoing payment for a vendor in Thailnd.
    Here is the business process we follwed:
    1. Posted Down payment request on vendor.
    2. Paid down payment through F110.
    3. Cleared down payment using F-54 and created a credit in vendor.
    4. Posted an invoice to vendor.
    5. Ran F110 to pay the net amount to the vendor, No errors in payment proposal but when the payment run is carried out it got cancelled with error message FBZ79.
    As  an alternative, we posted a credit memo replacing the down payment credit and then F110, To our surprise the payment run completed successfully.
    Does it make sense to anyboy? Is this issue applies to only Thailand.
    Thanks,
    Mano.

    Hello Mano,
    I would like to refer you to the following note :-
      1090637  Thailand-Withholding tax certificate numbering, RFIDYYWT
    which states :-
    ~~~~~
    Solution
    For release 470 onwards, certificate number generation at the time of
    document posting is not supported by SAP. SAP recommends generating
    certificate numbering at the time of reporting.
    ~~~~~
    Can you kindly check the following customizing in IMG (Transaction
    SPRO) :-
    -> Financial Accounting
      -> Financial Accouting Basic Settings
       -> Withholding Tax
        -> Extended Withholding Tax
         -> Calculation
          -> Withholding Tax Type
           -> Define Withholding Tax Type for Payment Posting
            -> Country Key TH
             -> Wth.t.type 11
    Inside the customizing, there is a tab 'Control Data'. Please select the
    checkbox 'No Cert. Numbering'. ie certificate number should not be
    generated during payment. It should be generated when you run RFIDYYWT.
    hope this helps
    Ray
    Edited by: Lakshmipathi on Jan 25, 2011 2:53 PM
    It is enough if you provide the OSS note number.  Dont copy paste the solution since legally it is not allowed

  • Error message: "The application "Numbers" is not open anymore." when trying to open or force quit.

    MacBook Pro  (15-inch, Late 2008) OS 10.10.1
    iWork ‘08
    Numbers 1.0.1
    Error message: "The application "Numbers" is not open anymore."
    I've tried to delete iWork & reload it, but still get the same message and can't open numbers. I've run disc utility (verify & repair disc and permissions).

    Jane,
    iWork '09 is $19 on Amazon. I would jump on that option. You won't miss iWork'08.
    Jerry

  • Status 56 -  IDOC with errors added

    Hi everyone,
            I was configuring File to IDOC Scenario, in the receiving R/3 system, i am getting error as Status 56 -  IDOC with errors added "<b>EDI: Partner Profile not available</b>".
            but i had already created Partner profile in WE20.
    Regards,
    Varun Reddy.K

    Hi Varun,
                   The below link will help u in solving u r problem
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e07dcaa0-a92b-2a10-3a96-b3d942bd1539
    Just try follow the steps followed in above mentioned link
    And also check u r RFC connection in TC "SM59".
    Reward with ponits if helpful
    Regards
    Sai Ganesh

  • Error in Receiver - IDoc with errors added

    Hi All,
    I am getting error in 56 - IDoc with errors added in receiver System.
    I am new in Idoc - please tell me How to resolve this issue..
    Thanks in advance..

    Hi all thanks for reply .
    All are the help full answer ,
    I use T-code WE19 and change partner profile and execute now it is fine.
    But i have checked all configuration regard partner profile from T-code WE20 it looking everything is fine but in Test tool for Idoc Processing by t-code WE19 i have checked it will taken wrong partner profile detail after giving correct manually now it is working fine.

  • Error adding a child form to more than one form

    When I try to add a child form to more than one form, I get the following error:
    Error Keyword: SDK.ADDFKCON
    Description: Error Adding Foreign Key/Constraint.
    Remedy:
    Action: F
    Severity: H
    Help URL:
    Detail:
    The following is the log trace:
    ERROR,23 nov 2011 17:22:42,050,[XELLERATE.ADAPTERS],Event: SDH Drop Foreign Constraint has encountered an error.
    ERROR,23 nov 2011 17:22:54,519,[XELLERATE.DATABASE],ALTER TABLE UD_TICKET3 ADD (UD_ADUSER_KEY NUMBER(19) CONSTRAINT NN_UD_TICKET3_UD_ADUSER_KEY NOT NULL, CONSTRAINT FK_UD_TICKET3_UD_ADUSER FOREIGN KEY(UD_ADUSER_KEY) REFERENCES UD_ADUSER(UD_ADUSER_KEY))
    java.sql.SQLException: ORA-01758: table must be empty to add mandatory (NOT NULL) column
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:210)
         at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:961)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)
         at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:1772)
         at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1741)
         at com.thortech.xl.util.JDBCUtils.executeUpdate(Unknown Source)
         at com.thortech.xl.dataaccess.tcDataBase.writeStatement(Unknown Source)
         at com.thortech.xl.dataobj.tcDataBase.writeStatement(Unknown Source)
         at com.thortech.xl.client.events.tcSDHAddForeignConstraint.createColumns(Unknown Source)
         at com.thortech.xl.client.events.tcSDHAddForeignConstraint.implementation(Unknown Source)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.ejb.databeansimpl.tcDataObjectBase.save(Unknown Source)
         at com.thortech.xl.ejb.databeansimpl.tcSDHBean.save(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SecurityRoleInterceptor.invoke(SecurityRoleInterceptor.java:47)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:844)
         at tcSDH_RemoteProxy_6ocop18.save(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    ERROR,23 nov 2011 17:22:54,519,[XELLERATE.DATABASE],Class/Method: tcDataBase/writeStatement encounter some problems: ORA-01758: table must be empty to add mandatory (NOT NULL) column
    java.sql.SQLException: ORA-01758: table must be empty to add mandatory (NOT NULL) column
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:210)
         at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:961)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1285)
         at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:1772)
         at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1741)
         at com.thortech.xl.util.JDBCUtils.executeUpdate(Unknown Source)
         at com.thortech.xl.dataaccess.tcDataBase.writeStatement(Unknown Source)
         at com.thortech.xl.dataobj.tcDataBase.writeStatement(Unknown Source)
         at com.thortech.xl.client.events.tcSDHAddForeignConstraint.createColumns(Unknown Source)
         at com.thortech.xl.client.events.tcSDHAddForeignConstraint.implementation(Unknown Source)
         at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.eventPostInsert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.insert(Unknown Source)
         at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
         at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
         at com.thortech.xl.ejb.databeansimpl.tcDataObjectBase.save(Unknown Source)
         at com.thortech.xl.ejb.databeansimpl.tcSDHBean.save(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.SecurityRoleInterceptor.invoke(SecurityRoleInterceptor.java:47)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:844)
         at tcSDH_RemoteProxy_6ocop18.save(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    ERROR,23 nov 2011 17:22:54,519,[XELLERATE.ADAPTERS],Event: Adding Foreign Constraint has encountered an error.
    How to correct this?
    Thank you!

    899043 wrote:
    Thanks for your reply!
    I have a form named UD_TICKET3. This form contains information about the ticket number and a comment about any action taken on a resource of identity. We want to add this form as a child of all the resources forms. The problem occurs when I try to add the child form to the second form.You cannot add same detail table (child form) to more than one master table (resource form).

  • Changing Time Zone (stsadm tzmove) = Error: Adding a value to a 'datetime' column caused an overflow

    After updating timezone.xml и RGNLSTNG.xml files for my SharePoint 2010 (SP2 - 14.0.7015.1000)
    I have to run this command to Update time zone on calendar events:
    stsadm -o tzmove -name "russ2014" -update all
    But this cause an error: Adding a value to a 'datetime' column caused an overflow
    ULS log event: System.Data.SqlClient.SqlException: Adding a value to a 'datetime' column caused an overflow.  The statement has been terminated.
    How to fix this?

    Hi,
    Whether you added new time zone definition to your timezone.xml 
    and  RGNLSTNG.xml files.  if not, please provide the details about what content you updated in timezone.xml and RGNLSTNG.xml files.
    The stsadm.exe –o tzmove command does not work for new time zone definition changes. 
    This command is designed for making changes in the existing time zone, 
    not for creating a new time zone definition.
    After you modify the Timezone.xml and Regnlstng.xml files to include the new time zone definition, you must restart Internet Information Services (IIS).
     To do this, click Start, click Run, type
    iisreset in the Open box, and then click
    OK.
    Try to do IIS restart, compare the results.
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact 
    [email protected]

  • Post system refresh, "Request IDoc : IDoc with errors added"

    Hello All,
    Post system refresh, we are not able to execute the data loads.
    While loading the Infopackage, the overall status is still showing in YELLOW status. but in the Transfer (IDOCs & TRFC), it shows an Error message as "Request IDoc : IDoc with errors added"
    Yesterday immediately after the refresh, we were able to execute the master data loads (full loads)...
    However, transaction loads (delta) is facing issues.
    Today, we are facing the problem in both master and transaction data.
    Please help!!!! Its a very critical issue!!!
    Edited by: Siegfried Szameitat on Aug 9, 2011 10:17 AM

    Hi,
    While selecting the Infopackage to run the INIT load, it is taking me to the ECC login screen. Once i enter my credentials, its showing a dump with the message:
    Short text of error message:
    No RFC authorization for user XXXXX ( RSA8 ).
    Long text of error message:
    Technical information about the message:
    Message class....... "RSAR"
    Number.............. 051
    Variable 1.......... "No RFC authorization for user XXXXX ( RSA8 )."
    Variable 2.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
    Please advice.
    Regards
    sneha

  • Organizer 9 often gets error adding keyword

    I spent more than a week evaluating Organizer 9 for my use by playing with a test catalog with several raw photos from various cameras I have.  I tried everything I could think of and posted here a few times asking questions.  Everything seemed to be working well.   I also saw posts saying some people had 100k photos in Organizer.  All looked good.  I wanted to be fairly confident before importing my 50k out-of-camera original photos and then spending a lot of time on adding keywords and star ratings since I didn't want to waste all that time and work if Organizer would not be a good fit for what I want or didn't work well.  All signals were go.
    A few days ago I got started on the real catalog.  I turned off all the analyze stuff since I don't need it and it was likely to just slow the computer down.  I imported about 50k photos.  I then started adding keywords.  I first made a pass through all photos and assigned a keyword for each photo that had the country or U.S. state where the photo was taken.  No problems.
    I then started another pass through all the photos adding one or two more keywords to some of the photos.  I have been having problems with this though.  I often, but not always, get a pop-up window with a message from Organizer saying it got an error adding a keyword to a photo.  I click Okay and then Organizer hangs for several seconds and down at the bottom left of the screen it says Searching.  Finally Organizer comes back, but now the thumbnail view doesn't show all the photos -- it shows only a subset.  I then click Show all and then spend a lot of time scrolling into the 50k photos and looking for where I left off before the error.  I then try to assign the keyword to the photo again and get the error again.  I click okay again.  This time it also says Searching for a few seconds, but when Organizer is ready again this time the thumbnail view has not changed so that is good.  I then add the keyword and this time it works.  Whenever I get the error the exact same sequence happens exactly like this with no variations:
    1.  Error adding keyword
    2.  Long wait with Searching shown in the lower left
    3.  Thumbnail view changes
    4.  I click on Show all and scroll down to where I left off
    5.  Again try to assign the keyword
    6,  Error adding keyword again
    7.  Wait with Searching shown in the lower left
    8.  This time thumbnail view didn't get changed
    9.  Try to assign keyword again and this time it succeeds
    By the way, the error window I get says:  Error Applying Keyword Tag(s).  It always is this same sequence.  Much of the time I get no errors and then I will get one and go through the above sequence.  I often can do a few more with no error and then an error again.  It seems to be random.  Sometimes it might happen 2 or 3 times in a row and sometimes it takes a long time until it happens again.
    I repaired the catalog, but it said there were no errors.  I also optimized the catalog.  Remember that I have just imported the photos and have been adding keywords.  I have not actually made much use of the catalog.  I have not been deleting or anything else.  Just import and add keywords.
    Any ideas?  Thanks!

    photodrawken wrote:
    Where are the photos stored?
    Where is the catalog located?
    Are you running Windows?
    How many drives on your computer, and how much free space on each?
    Which drive are you using for your PSE scratch disk?
    Ken, thanks for your reply.
    The photos are on a 1tb USB 2.0 external hd.  The catalog is on my computer local C: drive.  I am running Win7 64-bit.  The C: drive has 151gb free.  The external hd has 245gb free.  The PSE scratch disk is the default since I haven't changed anything, I suppose that would be the C: drive.
    Adding keywords to all photos on the first round worked without problem.  Adding one or two additional keywords to some of the photos on my second round works most of the time, but maybe about 20% of the time I get the error.  The error always goes away after the above lengthy, very annoying sequence though and I can continue.

  • DRM Error - Adding new member (3317)

    I received the following error (#3317) when I tried to add a new member - can anyone please advise on how to fix this problem?
    *\\Record #89 - Error adding member ABC12345 (3317)*
    *\\Record #89 -      Aggregate storage outlines only allow any shared member once in a stored hierarchy, including prototype.*
    *ABC123456789     ABC12345     SAMPLE NAME     S     +*
    Thanks!

    The answer lies within the error message itself,
    Please check below thread,
    Essbase Studio???
    and also
    http://docs.oracle.com/cd/E12032_01/doc/epm.921/html_errmsgs/aso.htm
    -Murali

  • PSE 9 Organizer Error Adding Keyword Tags and Other Woes

    Hello, everyone.  I am having a ton of problems with PSE 9 Organizer.  The most frustrating and biggest problem is that I believe my catalog has been corrupted beyond repair.  I spent all of yesterday tagging my photos.  I had no problems and everything seemed to be going well until all of the sudden, the organizer suddenly froze up.  I had to use the Windows task manager just to get it to close.  This happened several times.  Finally, the organizer locked up my computer and I had to restart.  I opened the catalog and didn't seem to have any problems at that point.  I was able to view all of the images, video files etc.  I was even able to open the editor from the organizer.  When I tried to add a tag to a photo it gave me an error.  All it said was "error adding keyword tag" then nothing.  I tried to delete the photo and all it said was "error deleting photo".  This "error" shows up any time I try to make any changes to all of the images.  I can't add any new photos, can't delete, or add tags.  I have repaired the catalog several times.  It found errors the first time, but evidently that didn't fix my problem.  I also optimized and deleted my thumbnail cache to see if that was the issue.  Still nothing.  I have other catalogs and they work fine, so it is something to do with this particular catalog.  Any suggestions on what to do next?  Can I move the pictures to a new catalog without losing the tags?  And no, I didn't write the tags to the images because I wasn't done tagging.  Besides, PSE doesn't always write the tags correctly, as you probably know. Next problem.   When I first open PSE and select the organizer, it doesn't alway open.  I can see it on my taskbar (Windows 7 64 bit), but I can't get the window to maximize.  I have to close and open several times to get the window to open.  Sometimes it randomly jumps to my second monitor like it can't decide where to go.  Very frustrating.  I would appreciate any suggestions about what to do.  Thanks.

    Back to the original question, after thinking about this for a couple days I have had two ideas for workarounds:
    1)  Copy my tag names into the photo metadata and create a new catalog to bring all of my images into.  This will allow me to keep all of my existing tags, and it MIGHT solve the tag display problem based on a test with a couple images in a new catalog.  The downsides to this are a) permanently writes my tags into the photo metadata which will be bad if I decide to change something later, b) loses all version sets, and c) loses all albums (although I don't have that many).  I found instructions for this workaround at http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Merging_Catalogs.
    2)  Live with the lack of color tag display in Organizer, and use reverse searches to find missing tag categories.  For example, if I want to find all photos that do not have a "Places" tag, I check the box next to the "Places" category (which also selects all sub-categories and tags below this).  Then I go to the Options drop-down in the Find Bar and "Hide best match results" and "Show results that do not match".  This gives me every image in my catalog that does not have a tag from the "Places" category, so I can go through and tag these as appropriate.
    I would have gone with #1 if it weren't for the permanence of the keywords.  I guess I have a commitment problem (or I just haven't got my tag hierarchy figured out yet).  Instead, I am going with #2 which should give me most of what I need for now.  I will still hold out some small glimmer of hope that Adobe manages a fix for this issue down the road.

Maybe you are looking for

  • Why wont my ipod touch let me download any apps that are free?

    It told me to restore to the original store bought and it deleted all my music apps and pics now i got my music back but it wont let me download any free apps like facebook or any games it say when i try "cannot connect to iTunes store" what do i do

  • How to get the Useru2019s position when the user doesnu2019t have CP relation

    We have a custom program which will add / delete attributes (In transaction PPOSA_BBP). It is working fine for users which were assigned with CP relation But it fails for users which doesnu2019t have CP relation (since we are getting the position of

  • How to use Session scope in jsp page

    Hello, I have login form, where user provides username and password. Then click on submit, it will forward to validation.jsp. Where it will check in database make sure username and password exit. Now i can also retrive accountid of perticular user. I

  • Suggestion for a good project

    Hi.. I have to develop a web application in my last semester of Bachelor of Engineering using technologies like Servlets, JSP, AJAX, JavaScript, struts, portlets .. Please give me some ideas on which domain I can develop a good project. The project s

  • [svn] 3079: Pop up and focus fixes.

    Revision: 3079 Author: [email protected] Date: 2008-09-03 10:53:07 -0700 (Wed, 03 Sep 2008) Log Message: Pop up and focus fixes. QE: YES Doc: Checkintests: YES Reviewer: Alex Bugs: SDK-16669, SDK-15688 mx/events/SWFBridgeEvent.as Add marshal() method