"want to save your changes" just after opening a xls, is continuing even with Office 2013 but didn't come in office 2003.

hi everyone,
Is there any microsoft article which provide information regarding this issue.
thank you in advance
regards
arun av

Hi arun av,
According to your description, you opened the previous excel file in new version of Excel. Did you get the dialogue box as shown in the figure when close the file?
Ideally, the issue is caused when the first time you open a file that was last saved in a previous version of Excel, the file is completely recalculated. For more information about Excel fully recalculating workbooks when they are opened for the first time,
you can refer to following links:
https://support.microsoft.com/en-us/kb/210162
https://support.office.com/en-sg/article/Change-formula-recalculation-iteration-or-precision-73fc7dac-91cf-4d36-86e8-67124f6bcce4#bmlearn_about_calculating_workbooks_tha
Hope it’s helpful.
Regards,

Similar Messages

  • Show the alert 'Do you want to save the changes? after entering each record

    Hi,
    Is there a way to show the alert 'Do you want to save the changes you have made?', after entering each record.
    i.e. as soon as a record is entered, user should be prompted to 'Do you want to save the changes?' the record when they move to the next record.
    I used the below code in Post-Record rigger. Prompt was diplaying fine as per the requirement,but record was not being saved.
    DECLARE
    n_button_selection INTEGER;
    BEGIN
    if :System.Record_Status='INSERT' then
    fnd_message.set_string('Do you want to save the changes?');
    n_button_selection := fnd_message.question('Yes', 'No','Cancel', 1, 2,'question');
    IF n_button_selection = 1 THEN
    forms_ddl('commit_FORM');
    ELSIF n_button_selection = 2 THEN
    RAISE form_trigger_failure;
    ELSE
    NULL;
    END IF;
    end if;
    END;
    I used forms_ddl('commit_FORM') to commit the record. Because we can't us Do-key('commit_form') in post-record trigger. But forms_ddl('commit_FORM') is not working. So can anybody please give some idea regarding this.
    --

    Forms_ddl issues dynamic sql - you cannot call another builtin (like commit_form) within forms_ddl. Check form_status after the call and you will see that it failed.
    Moreover, forms is not able to execute the post and commit process if you issue "forms_ddl('commit');", so this will not be a solution either.
    You could use the When-New-Record-Instance - Trigger, which allows restricted built-ins to be executed, and issue do_key('commit_form');". However, you would have to check the :system.block_status or :system.form_status, because :system.record_status will already hold the new record number.
    Regards,
    Gerd

  • Trying to purchase an app on the ipod after the upgrade.  Asking for security info, but after we answer the questions, we get "an error occured. We couldn't save your changes" on security info screen.  HELP!

    Trying to purchase an app on the ipod after the upgrade to 5.1.1.  Asking for security info, but after we answer the questions, we get "An error occured. We couldn't save your changes" on security info screen.  HELP!

    Us too! We've answered the questions and then get "An error occurred. We couldn't save your changes". Now what? We have a balance in the itunes account that it seems cannot be transferred. What next?

  • FIrefox repeatedly crashes at startup or just after opening a webpage

    Firefox repeatedly crashes on startup or just after opening a new page, I've tried downgrading my browser to FF 18 & the problem still occurs. Firefox won't even run properly in safe mode. I have included the latest crash report: bp-d8715a6c-6208-4420-8df4-cae752130307

    Hi Spirax, if your new profile works after a restart or two, you may want to start back up in your old profile and use the Reset feature. This is a lot easier than manually copying data to your new profile, although that is another option.
    Some reading for you:
    * [[Reset Firefox – easily fix most problems]]
    * [[Recovering important data from an old profile]]

  • How to suppress 'Do u want to save the changes?'  When there are no changes

    Hi All,
    I have developed one form,which contains 3 blocks in that 2 are database blocks and one is control block.It's working fine.When I close the form without doing any change also it is showing an alert as 'Do you want to save the changes you have made?'. How can I suppress that alert when I haven't made any change to the form.
    I am displaying one filed in the database block as 'null' until check box is checked.For that I have written code in when-new-block-instance trigger of that block.
    There I wrote SET_RECORD_PROPERTY (GET_BLOCK_PROPERTY (:SYSTEM.TRIGGER_BLOCK, CURRENT_RECORD), :SYSTEM.TRIGGER_BLOCK, STATUS, QUERY_STATUS); also to change the block status as query.
    But it is not working, still I am getting the alert,How can I solve this could anyone please give me a suggestion..
    Thanks in advance.

    So, this functionality can be done through CHECK BOX itself. Why you are making null by WHEN-NEW-BLOCK-INSTANCE. You can just set the update and insert property for that fields and rest things you can control from chexbox. And WHEN-BLOCK-INSTANCE-TRIGGER will fire once when you will access that block. If you want to set the same functionality for each record. Then you must use WHEN-NEW-RECORD-INSTANCE. for ex.
    Trigger = WHEN-NEW-RECORD-INSTANCE (BLOCK-LEVEL)
    Here i will assume that if check box is checked then he can update that fields.
    IF :CHECKBOX='Y' THEN
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',INSERT_ALLOWED,PROPERTY_TRUE);
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',UPDATEABLE,PROPERTY_TRUE);
    ELSE
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',INSERT_ALLOWED,PROPERTY_FALSE);
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',UPDATEABLE,PROPERTY_FALSE);
    END IF;In the above code no need for set value to NULL.
    And on CHECK BOX you can write like this...
    Trigger WHEN-CHECKBOX-CHANGED (ITEM-LEVEL)
    IF :CHECKBOX='Y' THEN
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',INSERT_ALLOWED,PROPERTY_TRUE);
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',UPDATEABLE,PROPERTY_TRUE);
    ELSE
      :FIELD_NAME:=NULL;  -- here if check box is unchecked then it will set value to NULL
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',INSERT_ALLOWED,PROPERTY_FALSE);
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',UPDATEABLE,PROPERTY_FALSE);
    END IF;-Ammad

  • How to avoid the message "Do you want to save the changes you have made?"

    i have 3 forms
    master block
    detail1 block of master
    detail2 block of detail1
    when i go out of detail1 and detail2 blocks after doing some modifications it asks me "Do you want to save the changes you have made"?
    i want to avoid this message as well as my changes should be posted in the database. what is the solution for this big pblm?

    hi
    may be you are trying to modify the database item or reassigning the database item value which is not actually needed.
    try to comment the reassigning database values
    and give clear_form(do_commit);
    most probably u will not get the message again
    Regards
    Rajdeep .A

  • Dialog Box as "Do you want to save the changes?" in Forms.

    Hi,
    I have 4 datablocks in my forms that corresponds View.
    In the form design, I have a canvas(multiple inserting design) with two buttons that calls the other two blocks.
    Am inserting the records in the following way,
    In first record,
    am entering the value in one block, then a button-press event and so it opens another canvas where I enter some values then return to my main canvas. This is one row.
    But while I try to insert in the second row, there arises the dialog box as "Do you want to save the changes"?
    I should not get that dialog box.
    Please suggest me with the solution.
    Regards,
    Mini

    Thanks for the response,
    Let me clearly explain.
    I have 3 blocks created from view not table.
    I have a canvas in the multiple display layout i.e Number of items displayed is 10.
    In that canvas, I have set the two buttons. the button event is calling another canvas.
    Am inserting a record in the first row in the following sequence.
    Inserting the values for some fields in the main canvas, then entering the button, it opens another canvas that responds to another block, there am entering some values and closing the button event canvas, then returning to my main canvas, then entering the remaining fields with the values, thus my first row ends.
    Now I want to enter the values in the second row, while I navigate from the first Row to the Second row, there arises the dialog box as to save the changes or not?
    I should not get the dialog box.
    Am inserting the values in the database using Insert statements in all the blocks.
    Hope U understand the issue.
    Suggest me with the solution.
    Regards,
    Mini.

  • Is there an app where it saves your photo shortly after onto the web/online after taking a picture?

    Is there an app where it saves your photo shortly after onto the web/online after taking a picture? In essense, I want to be able to take a picture with the stock camera app on the Iphone 4 and have it saved immediately online after...without hooking it back onto a computer...completely automatic and wireless/using internet data.
    Thanks very much.

    If you're running iOS 5.1 or later you could use Photo Stream.  See http://www.apple.com/icloud/features/photo-stream.html and http://support.apple.com/kb/HT4486.  It will upload up to 1000 photos to iCloud.com for 30 days.

  • Forms6i question - Do you want to save the changes you have made !!

    Hi,
    I'm developing a custom master-detail form for 11i e-Business Suite. The requirement is to programmatically default values for some of the base table items when entering the master record.. Both the master and the detail blocks are base table blocks and defined the relation between these 2 as well..
    So i have coded my defaulting logic in the "when-new-record-instance " trigger only when the "(:system.record_status IN ('NEW','INSERT' ) AND :system.mode <> 'ENTER-QUERY')"..
    This is working but the problem is even when i do not change any values in the master block and i try to exit out of the form, getting a message "Do you want to save the changes you have made ".. I want to get that message only when some thing else is changed/entered in the master block or when any new detail records has been entered for that master block.
    Thanks in advance
    Shree

    Shree,
    It sounds like you have a Post-Query (PQ) trigger that is populating items in your Form. This is the typical reason why you would see this message when you close your form and no User changes have been made. The best solution would be to move your non-base table items from your data blocks to a control block so the PQ trigger won't mark the block or record as "Changed".
    Hope this helps.
    Craig...

  • Gettins "Do you want to save the changes you have made" promt without any

    Hi all,
    Problem : I have a master detail relation between two blocks which are on different window ( say block 1 on window 1 is master and block 2 on window 2 is detail) ,
    when i open my window 2 and close it without any changes, then when i try to do any change in window 1 i get this popup message "Do you want to save the changes you have made".
    I have various non database items as well which are used to hold intemediate values like sum of a column and all.
    for the close button on window 2 logic :
         go_block('BLOCK1');
         hide_window('WINNDOW1');
    I dont want to change the message level. as if there are really changes made then we need this message.
    In another thread i saw this might be due to copy "value from property" created by master detail relation on the joined columns.
    Please suggest any solutions.
    Thanks in advance.

    HI I found the solution to this Problem:
    when we queried the data block then few items values were assigned . this changes the block_status to CHANGED as well as the form_status variable to CHANGED.
    so in EXIT logic of that window i cleared each block explicitly . this discards all the changes made to those blocks ( This logic was implemented for CANCEL button on my screen as so we need not save the data) while the SAVE logic already has the COMMIT so will not set the popup for that.
    Not a beautiful logic...... but works ...... :)

  • When I enter my password to purchase a song, I need to create new security questions. Whenever I finish making thm and submit them, a box says "An error has occurred. We could not save your changes." How do I make it go away?

    When I enter my password to purchase a song, I need to create new security questions. When I finish writing them out and I hit submit, a box comes up with the words: "An error has occurred. We could not save your changes." What does that mean and how do I make it go away?

    Potentially the issue may be the combination of actual distance and the presence of any Wi-Fi interference at the location of the AirPort Express that may be the culprit here. The bottom line is you would want the Express to be within a 25+ dB range of the Extreme to be sure that it can consistently stay connected to it.
    For more details on proper base station placement, check out the following AirPort User tip. Please post back your results.

  • Suppress the message do you want to save the changes you have made

    hi all
    i have written a rollback
    it clears my record
    but gives me the message
    do you want to save the changes you have made
    i have written
    :system.message_level :=25;
    rollback;
    :system.message_level=0;
    but still it is giveing me the message
    can you please tell me how to suppress this message
    please help me
    thanks
    mandar

    try in reverse

  • Unnecessary question "Do you want to save the changes..."

    Hello again,
    I have a multi-record block on which only update is allowed and two buttons: accept and reject. There are three possible ways of changing records:
    1. change values in some fields and commit - which works fine;
    2. change values in some fields and press accept button;
    3. change values in some fields and press reject button.
    Buttons have implemented delete, update, insert in some tables using a pl/sql stored package. At the end of the processing, for both buttons, record "accepted" or "rejected" dissapears from the block - using execute_query. Problem is that if some values have been changed before pressing the button, warning window appears: "Do you want to save the changes you have made?" which in this case is unnecessary and annoying. How can i get rid of this message?
    Thank you in advance.

    If you don't want commit changes on base table items you can use clear_block(NO_VALIDATE) built-in before execute_query

  • What does it mean "Do you want to save your current game on a new Game Center account?"

    My daughter and I have been playing Hay Day.  She on the iPad with her own Game Center Account.  I on my iPhone, with my Game Center account.  Tonight I noticed that I can log her out and log in as me, so I can play on the big screen.  As soon as my wife saw this, she wanted to play too.  So... she created a Game Center account, logged me out, and logged into Game Center as her.  When we go the game, this message appears:
    "Do you want to save your current game on a new Game Center account?"
    What does this mean? 
    What should we choose to ensure she starts a new Hay Day game, not start where I was.  We did not get this message when we switched back and forth between my daughter an I.
    Thanks,
    Matt

    Thanks Larry.  I ended up at the genius bar at the local Apple store.  My home button had died which is why the phone was constantly going to Voice Control.  The phone was replaced.  Thanks for answering.  I checked out the link and ordinarily that would have done the trick.

  • HT1711 Why do I get Security Info questions at purchase?  then get an error occured.  we coudln't save your changes

    I try to purchase, put in id and password, buy,then prompted at Security Info page - asked to provide answers to security questions (never asked before), answer questions and get "an error occured.  We coul not save your changes."  I cannot continue with purchase.  If I was asked these questions before and answers are located somewhere - where might I find them?

    Us too! We've answered the questions and then get "An error occurred. We couldn't save your changes". Now what? We have a balance in the itunes account that it seems cannot be transferred. What next?

Maybe you are looking for

  • Need help in using SUBSTR

    Hi, I have a table tablea where a column stores values like ABC LTD,BCD LTD,CEF LTD,DEFEF LTD. I want the output as ABC,BCD,CEF,DEF i have used substr but could not frame the result as the last value stores DEFEF so culd not do substr(1,3) from the t

  • Flickering Menu Bar on Inactive Secondary Monitor

    I've been running Maverick about a month.  I haven't noticed any problems until recently.  I have a 2013 13' Macbook Air, 1.3 i5, 4GB RAM. I have a secondary monitor and the inactive display flickers.  It doesn't matter which display is the primary. 

  • How to create an instance of JCO.Table

    hi, I am facing a problem while migrating from JCO Client service to Connector Framework. Basically i get the output in the format of IRcordSet after calling Back End system. I need to convert this to JCO.Table to continue in my code so that i wont c

  • Error Blank spaces smartforms

    Hello, I have an smartform who recibes a table of char255 lines. The only thing I do is a loop over it and show each line. My problem is I have some lines with a lot of blank spaces (for example"01                    7,50     10,30") and on the scree

  • Problem with Indesign CC 2014 and tables

    Problem with Indesign CC 2014 and tables. The text rearranges itself when I delete or add something in a table; the footnotes to the text associated with the overlap even getting unreadable. Just click on the chain symbol in the window and everything