I submit a negative number and it subracts twice the value

I submit a negative number and it subracts twice the value on Numbers 08 running Lion

"But as soon as I paste the two columns(column of names), (column of information) from the original bad sheet into it seems these pastings corrupt my numeric column in some way.  So it seems anything pasted from the original working sheet onto a good new sheet causes the new sheet to have the same problem."
You might be able to strip that corruption with one of these techniques:
Export the original document as a CSV file. Open this in Numbers, then transfer the names and information columns (individuallly) using Copy/Paste
Export the original document as an MS Excel file, Open that file in Numbers.
Copy the names column from the original document to the Clipboard.
Select the first cell in the Names column of the new table.
Use an Applescript to convert the contents of the clipboard to Text and paste it into the new document.*
   repeat with Information column
Regards,
Barry
* I've contacted Yvan regarding a minor edit to a script he wrote some time ago to do this in Pages.

Similar Messages

  • How do I change a cell phone number on my iPad. I have a new cell phone number and want to use the iCloud

    How do I change my cell phone number on my iCloud account with my iPad? I have a new number and want to activate the iCloud

    If you're talking about the phone number on your iPad for iMessage, the number is associated with the ID when you turn on iMessage on your iPhone.  If the number is incorrect, try turning off iMessage on your phone, wait a minute or so, then turn it back on.

  • After I synced my iphone (4S with ios 8.1.2) using itunes with MS outlook on my new PC , suddenly all my contacts without telephone number and what I have the name of the contact only ?

    After I synced my iphone (4S with ios 8.1.2) using itunes with MS outlook on my new PC , suddenly all my contacts without telephone number and what I have the name of the contact only ?

    I couldn't find the edit button on my original post so I am posting an update here.
    I have gone through more apps and have had good luck on all but one more.  And it's not that the app doesn't work, I am talking about the Yahoo Weather app, It works fine, but when you swipe between cities the screen lags a bit and it sometimes doesn't move between pages the way it should.  On iOS 7.1.2 it was smooth as butter but on iOS 8.0, not so much.  I will post a note in the app store to let them know.  I really like the Yahoo app better than the new stock app.
    I have been going through my games and they all work fine. Angry Birds (Original and Stella), Canabalt, Minecraft, Bejeweled 2, Silly Walks, PopWords, Doodle Jump, Deep Green all seem to work just fine. 
    Starbucks app works as it should. 
    I will stop back again next week after I have had the weekend to play with it in detail and post my thoughts again.

  • I have an array here numbers are coming continuously, I have to make a table of number and repeition (frequency) of the number

    I have an array here numbers are coming continuously, I have to make a table of number and repeition (frequency) of the number

    So?  It is not clear what exactly you want to do.  Nor is it clear what problems you are having (other than asking us to do your work for you).  Why don't you try to solve this problem yourself, and if you get stuck, show us your code, tell us what questions you have, and someone will surely help you.
    BS

  • HT201272 Where do I get the serial number and product key for the version of AutoCAD LT for Mac that I bought from the ITunes store?

    Where do I get the serial number and product key for the version of AutoCAD LT for Mac that I bought from the ITunes store?

    The iTunes Store doesn't sell software for the Mac. I presume you mean the Mac App Store. To the best of my knowledge, no software sold in the Mac App Store has serial numbers nor product keys. For what reason do you think you need them?
    Regards.

  • How to call procedure inside a procedure and need to sore the value in a variable?

    HI ALL,
    i am usung oracle 11g.
    here is my package and procedure
    i want  to call get_email_details this procedure inside the process_email_master and want to keep the value inside a varible in master procedure
    create or replace
    PACKAGE        ms_gen_process_email
    as
       type email_type is record(subject                            varchar2(4000 char),
                                 email_body                       varchar2(4000 char),
                                 to_receipent                    varchar2(4000 char),
                                 cc_receipent                     varchar2(4000 char));
        type email_type_table is table of email_type;
       procedure process_email_master(
          p_metric_name     IN   VARCHAR2,
          p_current_stage   in   varchar2,
          p_action          in   varchar2,
          p_pid             in    number,
          P_OBJECT_ID       in    varchar2
          --p_emai_master     out   p_email_type_table
       PROCEDURE get_email_details (
          p_metric_name     IN   VARCHAR2,
          p_current_stage   in   varchar2,
          P_ACTION          in   varchar2,
          p_email_type_table1 out email_type_table
    END ms_gen_process_email;
    create or replace
    PACKAGE BODY        ms_gen_process_email
    as
        procedure process_email_master(
          p_metric_name     IN   VARCHAR2,
          p_current_stage   in   varchar2,
          p_action          in   varchar2,
          p_pid             in    number,
          p_object_id       in    varchar2
          as
          begin
          null;
           EXCEPTION
          WHEN OTHERS
          then
             null;
          end process_email_master;
       PROCEDURE get_email_details (
          p_metric_name     IN   VARCHAR2,
          p_current_stage   IN   VARCHAR2,
          P_ACTION          in   varchar2,
          p_email_type_table out email_type_table
       as
       BEGIN
          select subject, email_body, to_receipent, cc_receipent
           bulk collect into p_email_type_table
                    from ms_gen_email_config_detail
           WHERE email_key = (
                    SELECT email_key
                      FROM ms_gen_email_config
                     WHERE metric_name = p_metric_name
                       AND action = p_action
                       and current_stage = p_current_stage
          for i in p_email_type_table.first..p_email_type_table.last loop
          dbms_output.put_line(p_email_type_table(i).subject||p_email_type_table(i).email_body||p_email_type_table(i).to_receipent||p_email_type_table(i).cc_receipent);
          end loop;
       EXCEPTION
          WHEN OTHERS
          THEN
             NULL;
       END get_email_details;
    END ms_gen_process_email;
    but i am getting this error
    Error(15,31): PLS-00201: identifier 'P_EMAIL_TYPE_TABLE' must be declared
    Regards
    Damby

    If you need to call a procedure which has yet to be defined in your package, you can use forward declaration...
    That means that you declare the procedure/function before the place it's going to be called (typically people do this at the top of the package) without providing a body for the code...
    PACKAGE BODY        ms_gen_process_email as
       PROCEDURE get_email_details
          p_metric_name     IN   VARCHAR2,
          p_current_stage   IN   VARCHAR2,
          P_ACTION          in   varchar2,
          p_email_type_table out email_type_table
       ); -- Forward declaration of get_email_details procedure
        procedure process_email_master(
          p_metric_name     IN   VARCHAR2,
          p_current_stage   in   varchar2,
          p_action          in   varchar2,
          p_pid             in    number,
          p_object_id       in    varchar2
          as
          begin
          null;
           EXCEPTION
          WHEN OTHERS
          then
             null;
          end process_email_master;
       PROCEDURE get_email_details
          p_metric_name     IN   VARCHAR2,
          p_current_stage   IN   VARCHAR2,
          P_ACTION          in   varchar2,
          p_email_type_table out email_type_table
       ) as

  • How to get the total number of occurrences based on the value of a column.

    Hello everyone,
    This is the first time that I will ask question here on your forum but has been following several threads ever since. I guess that now is my turn to ask a question. So anyway here is the thing, I have a query that should return count the number of rows depending on the value of SLOT. Something like this:
    WIPDATAVALUE          SLOT             N            M
    1-2                   TRALTEST43S1     1            3
    1-2                   TRALTEST43S1     2            3
    3                     TRALTEST43S1     3            3
    4-6                   TRALTEST43S2     1            4
    4-6                   TRALTEST43S2     2            4
    4-6                   TRALTEST43S2     3            4
    7                     TRALTEST43S2     4            4-----
    As you can see above, on the SLOT TRALTEST43S1, there are three occurrences so M (Total number of occurrences) should be three and that column N should count it. Same goes with the SLOT TRALTEST43S2. This is the query that I have so far:
    SELECT DISTINCT
    WIPDATAVALUE, SLOT
    , LEVEL AS n
    , m
    FROM
      SELECT
        WIPDATAVALUE
        , SLOT
        , (dulo - una) + 1 AS m
      FROM
        SELECT
          WIPDATAVALUE
          , SLOT
          , CASE WHEN INSTR(wipdatavalue, '-') = 0 THEN wipdatavalue ELSE SUBSTR(wipdatavalue, 1, INSTR(wipdatavalue, '-')-1) END AS una
          , CASE WHEN INSTR(wipdatavalue, '-') = 0 THEN wipdatavalue ELSE SUBSTR(wipdatavalue, INSTR(wipdatavalue, '-') + 1) END AS dulo
        FROM trprinting
        WHERE (containername = :lotID OR SLOT= :lotID) AND WIPDATAVALUE LIKE :wip
    ) CONNECT BY LEVEL <= m
    ORDER BY wipdatavalue;And that it results to something like this:
    WIPDATAVALUE          SLOT             N            M
    1-2                   TRALTEST43S1     1            2
    1-2                   TRALTEST43S1     2            2
    3                     TRALTEST43S1     1            1
    4-6                   TRALTEST43S2     1            3
    4-6                   TRALTEST43S2     2            3
    4-6                   TRALTEST43S2     3            3
    7                     TRALTEST43S2     1            1-----
    I think that my current query is basing its M and N results on WIPDATAVALUE and not the SLOT that is why I get the wrong output. I have also tried to use the WITH Statement and it works well but unfortunately, our system cant accept subquery factoring.
    I know you guys will be helping out because you are all awesome. Thanks everyone
    Edited by: 1001275 on Apr 19, 2013 8:07 PM
    Edited by: 1001275 on Apr 19, 2013 8:18 PM

    Hi,
    Sorry, it's still not clear what you want.
    Are you saying that, given this table:
    CREATE TABLE trprinting
      WIPDATAVALUE       VARCHAR2(255)
    , SLOT               VARCHAR2(255)
    INSERT INTO trprinting (wipdatavalue, slot) VALUES ('1-2',  'TRALTEST43S1');
    INSERT INTO trprinting (wipdatavalue, slot) VALUES ('3',    'TRALTEST43S1');
    INSERT INTO trprinting (wipdatavalue, slot) VALUES ('4-6',  'TRALTEST43S2');
    INSERT INTO trprinting (wipdatavalue, slot) VALUES ('7',    'TRALTEST43S2');you want to produce this output:
    WIPDATAVALUE SLOT                     N          M
    1-2          TRALTEST43S1             1          3
    1-2          TRALTEST43S1             2          3
    3            TRALTEST43S1             3          3
    4-6          TRALTEST43S2             1          4
    4-6          TRALTEST43S2             2          4
    4-6          TRALTEST43S2             3          4
    7            TRALTEST43S2             4          4? If so, here's one way:
    WITH     got_numbers     AS
         SELECT     wipdatavalue
         ,     slot
         ,     TO_NUMBER ( SUBSTR ( wipdatavalue
                               , 1
                           , INSTR ( wipdatavalue || '-'
                                ) - 1
                     )          AS low_number
         ,     TO_NUMBER ( SUBSTR ( wipdatavalue
                               , 1 + INSTR ( wipdatavalue
                     )          AS high_number
         FROM     trprinting
    SELECT       wipdatavalue
    ,       slot
    ,       ROW_NUMBER () OVER ( PARTITION BY  slot
                                 ORDER BY          low_number
                        )                    AS n
    ,       COUNT (*)     OVER ( PARTITION BY  slot )     AS m
    FROM       got_numbers
    CONNECT BY     LEVEL               <= high_number + 1 - low_number
         AND     low_number          = PRIOR low_number
         AND     PRIOR SYS_GUID ()      IS NOT NULL
    ORDER BY  low_number
    ,            n
    ;Much of the complexity here is caused by storing 2 numbers in 1 VARCHAR2 column, wipdatavalue. Relational databases work best when there is no more than 1 item in any given column of any given row. This is so basic to datbase design that it is called First Normal Form. Also, numbers belong in NUMBER columns, not VARCHAR2. If you stored your data like that in the fist place, then you wouldn't need the sub-query I called got_numbers, which is about 60% of the code above. (That could be reduced by replacing SUSTR and INSTR with the less efficient REGEGP_SUBSTR.)

  • Using a two separate 6534 cards I'm trying to code-up a simple test for my UUT (memory device). I need to write a pattern into the device and read back the pattern and verify it matches the value written.

    I need the simplest method of using two 6534 cards for a memory (UUT) test. I want to write (byte-wide) a pattern (A5,5A) into the UUT, then read it back and verify it matches the value written. Things that change are: Address inputs (increment by 1 for each read/write) with the control signals (card 1) and data values written/read (card 2). If I detect a mis-match, the test stops, I read the location one more time and verify it's really incorrect, the correct value is written back into the same location just read, a counter is incremented to keep track of the tota
    l errors detected and the test (memory read/verify) is resumed. Each time through the memory another counter is incremented to track the number of passes through the memory read test. The test should terminate when the operator hits the VI panel STOP TEST button.

    Dave
    Check out chapter two of the 653x User Manual for information on the different modes of operation. There it explains the difference between strobed and unstrobed I/O as well as Pattern I/O and Handshaking. It sounds as though unstrobed should work unless your UUT requires hardware timing or handshaking. You will have to keep track of errors in software however since the 6534 does not have any counters on it.
    Brian

  • How to include the promotion and sales deal in the value contract ?

    Question : Can a value contract contain other special pricing agreement ?
    If yes, how to include the promotion and sales deal in the value contract ?
    Thanks for your input.
    Oscar

    Hi Oscar,
    I have not worked on this aspect as such but once you create a value contract I think you as well create a promotion and sales deal for the customer with whom you have value contract with in the validity period of the contract and system should pick up data accordingly as the customer is same (Contract) and is within the validity period.
    Pl give feed back.
    regards
    Srini

  • Right-click on browser.xul.error_pages.expert_bad_cert and select Toggle. The value will change to true.

    I am working with Firefox 30. I get a certificate error on each webpage I go to. I have reset and uninstalled the browser to no luck. I have also did the following:
    Open a new Firefox window, and type this into the address/URL:
    about:config
    - You'll probably see a warning that changing the config can be dangerous. Click the button to accept the warning and proceed, but BE CAREFUL from here on!
    - A table will appear showing various Firefox settings ("Preference Names") and their current values.
    - In the Filter box type: broswer.xul
    - There should now be a shorter list of settings, including one named browser.xul.error_pages.expert_bad_cert with a value of false.
    - Right-click on browser.xul.error_pages.expert_bad_cert and select Toggle. The value will change to true.
    - Exit completely from Firefox (i.e. close all windows), and then restart it.
    This has not worked either. Does anyone have any other thoughts?

    Any idea why you are getting these errors?
    If you expand the technical details section of the error page, there should be some kind of explanation or code there. Can you copy/paste that into a reply?
    If it says something along the lines of "sec_error_unknown_issuer" this can indicate one of these situations:
    (1) Incomplete security software installation
    Some security suites include a feature to intercept and scan your web traffic, including secure connections. In order to do this, they must present a fake certificate to Firefox, which of course, Firefox rejects. Programs such as ESET and Kaspersky provide a way to either turn off this feature, or import a master certificate into Firefox so that Firefox will trust these programs.
    Does that sound relevant?
    (2) Malware
    Unfortunately, some malware also will intercept your secure connections. Often they can do this invisibly in IE and Chrome because they can inject certificates into the shared Windows certificate store. Because Firefox uses its own certificate file, you may get errors in Firefox that you do not get in IE and Chrome.
    To distinguish these, it's helpful to inspect the "Issued by" section of one of the certificates from a site that works in IE but not Firefox.
    When you get the error page in Firefox, you can expand the "I understand the risks" section, and click the button to Add Exception. You don't need to actually save an exception to inspect the certificate, so you can cancel after viewing the certificate.
    Check the "Issued by" section to see what you find there. For example:
    * Name associated with your security software, such as ESET, BitDefender, Kaspersky, etc.
    * Sendori (indicates unwanted software from Sendori)
    * FiddlerRoot (indicates unwanted software named similarly to BrowserSafeguard, BrowserSafe, SafeGuard)
    * Something else
    What do you see?

  • My iPhone serial number and IMEI is not the same as Apple server

    Hello,
    My problem started when I want to unlock my iphone 3gs via Imei.
    My old iphone broke about a month after i bought it (it was 2 years ago), so i sent it to Movistar to change it (i think that they sent it to appleCare). Now Movistar told me that i have to send the old iphone imei in order to unlock the iphone i have now, i ask apple for the repair order receipt, then i received an email and i could see the information about the 2 iphones: the old broken one and the new one.
    Then I realized that the iphone they sent me as a replacement (the new one) is not the same iphone i have. The serial number and the Imei are different, so, should apple change this data in their server in order to unlock my iphone or what can i do to solve it?
    There is any formal way to perform this data change?
    Thank you in advance,
    Francisco Marzabal

    Here we work with repairs for devices that does not have waranty (expired or other issue). In this case, I did the screen replacement. No other ipad was on my station, the ipad arrives, i took it change the glass, put everithing back, give to customer. Thats it. The job was done by me, the customer test his ipad in front on me, works fine, everything ok. Few days pass and he came back saying that it wasn't his ipad, he brings the box that the ipad came and ask me why the serial number does not match the serial number in the box (sorry NOT in the back of the ipad).
    There were no other part changed only glass. After 7 years working on this, thats the first customer complaining about a work done here. After this I was curious and look for more information and some forums, also one port here is claiming that the serial number on the device is not the same as the box where it came.
    I just want to make sure that there are possibilities that there could be such mistake during the packaging process.
    Thanks for the replies

  • How can I get the apps that I paid for on iTunes and the app store I don't have a computer I paid for them using my ipad and everytime I try to redownload them it asks for my card number and when I put the number in it tells me that the number is not a wo

    Ok can anyone tell how I can get the apps that I paid for on iTunes and the app store using my I pad because I don't have a computer and when I try to redownload the apps it keeps asking me for my card number and when I give it my card info it says that it's an invalid number when I know that it's not

    If you are getting an 'invalid security code' message then is the address on your iTunes account exactly the same (format and spacing etc) as on your credit card bill : http://support.apple.com/kb/TS1646 ? If it is then you could try what it says at the bottom of that page :
    If the issue persists, contact your credit card company and verify that they and any company they use to process credit card authorizations have the correct information on file.
    And/or try contacting iTunes support : http://www.apple.com/support/itunes/contact/ - click on Express Lane, then iTunes > iTunes Store

  • Which table stores old value of IBAN number and how to retrive old value.

    HELLO TEAM
    We are going through an enhancement process that requires to display old value and new value of the IBAN number from the Vendor master records. As IBAN is a combination of the country key, Bank Key and Bank account number, which are all key fields, their values are stored in the form of key in CDHDR and and CDPOS tables. The bank details are only shown in other key tab/column and the field name is displayed as key in CDPOS. These sensitive field changes are displayed as created or deleted but do not show as old value=x and new value =Y.The old value and new value fields are blank. The same happens for object IBAN and the tiban table only stores iban numbers that are updated and does not store old value of the iban number.
    If I have to display in the report s_alr_87012089, the old value and the new value of the iban number , how can i achieve the task. From which table we can retireve the old value of the IBAN number.
    << Moderator message - Everyone's problem is important. But the answers in the forum are provided by volunteers. Please do not ask for help quickly. >>
    Thank you in anticipation of a solution
    Shekhar
    Edited by: Rob Burbank on Jul 19, 2011 4:59 PM

    Hello Team
    We have explored all the above means. We are working in 4.7 environment. As we could not find an appropriate solution, we have approached the forum. The old value is not stored in cdhdr and cdpos and has the indicator as 'E' -Delete. So if an updation is done then it will delete old value and create a new value. This happens especially for the fields Bank Country Key,Bank Key, Bank Account Number. All we have checked the object attributes in the table lfbk, where for some fields it does track changes  and for other it does not track changes. This is especially for the fields kovon and kobis.
    If the requirement is to track changes to the fields Bank Country Key,Bank Key, Bank Account Number, kovon, kobis, iban which are sensitive data, and the report has to display old value and new value for sox compliance, how can this be achieved?
    I have also gone through the SAP note 580266
    If we are running a report to track changes to all vendors or a selected group of vendors, only some fields show up the value old value and new value.
    Would appreciate if an appropriate solution is provided.
    Request for a solution as i waited for 2 days if any expert could help!!!
    Thank you
    shekhar
    Edited by: V_Shekhar on Jul 27, 2011 1:18 PM
    Edited by: V_Shekhar on Jul 28, 2011 4:36 PM

  • Photoshop cs3 extended asking for serial number and activation after having the program for over 5 years now

    for some reason the program out of the blue is asking for a serial number and activation.  I can't find the case anymore.  does anyone have a way I can contact adobe directly to see if they can help me solve this problem. 
    Everywhere I look points me back to the forum or troubleshooting menus.
    thanks

    It may think you have a different computer if you've changed some of the hardware recently.
    Did you purchase the software as a download or register it with Adobe?  If so, your serial number may be available from them directly.  Click first the red A logo at the top of this page, then drill down through [Manage Account] to see the products they have on file for you.
    If you've physically lost your serial number and never registered it with Adobe, it's like losing a wad of cash on the street.  You're responsible for holding onto your valuables and no one's going to step up and replace it for you.
    The Creative Cloud Photographer's Bundle subscription package is still available for $9.99 a month, as far as I know.
    -Noel

  • Smart Number and RFx Name are the same?

    Hello all,
    I am facing the following issue:
    I activated smart numbering for my RFx documents. However, the field "RFx Name" is also being filled with the smart number, and I am not able to change it. Even if I define smart number as external, any change I make in one field is reflected in the other.
    Can anyone help me with this? Is this related to any definition in customizing, i.e., do I say that the value in "Smart Number" is the same as in "RFx Name"?
    Thanks in advance,
    Joã

    We got the following explanation from SAP:
    The smart numbering was designed to use the existing description field
    that is stored to database. Now both the fields on the UI are mapped to
    this database field description. It was decided that in PPS we would
    only have Smart numbering appearing as description across all BO's. If
    you want to use RFx name then probably you have to create your own
    custom field that would store this info to database.

Maybe you are looking for

  • Audio output unavailable

    MBP 2011 running Lion. Have been suffering on various front since I upgraded (in reality it feels like more of a downgrade) to Lion. Latest and most annoying problem is the fact that the only audio output I have available is Digital out. Great if I w

  • XML file for loading different classes in application ?

    Hi, I want to configure a small application ( a simulator ) using a XML file. The XML file determines the classes, whih should be loaded, and initialize the variables (values set in the XML files). I want to have different modules (same functionality

  • Finding a TABLE based on a COLUMN NAME...

    I need to find all tables that that have a common column name. Upon searching the Forum, I found this nice nugget: How to find the table in a schema if I only know a particular column name The problem is, my USER_TAB_COLUMNS is EMPTY! If it had worke

  • Yosemite requires an update to JRE 8.0. I downloaded and installed but it still gives a message to download an install.

    After updating to Yosemite I keep getting prompts to update the Java Run Time Environment to version 8. After downloading and installing the update I am still getting the message as if the JRE is not there. Also, I cannot find it in the Applications

  • Why does my mail application keep shutting down?

    Every time I open mail it comes up saying Mail quit unexpectedly - Click reopen to open the application again and when I do reopen the same thing happens again. Can anyone help?