Unable to modify embedded Excel spreadsheet

Unable to modify embedded Excel spreadsheet
I am having problems with 2 Xcelsius files.  When I open them and try to change the tab name, the embedded Excel spreadsheet is coming up that it is protected, but I have never put a password on these 2 files.
The following pop-up message appears - "Workbook is protected and cannot be changed".
Please advise.
Thanks,
Neil.

HI Neil
Assuming your using Xcelsius 2008, have you tried exporting the spreadsheet (Data > Export), check the exported workbook for passwords and then re-imported the spreadsheet back into your model?
Regards
[Charles|http://www.reportex.co.uk/xc_waterfallchart.html]

Similar Messages

  • Cannot Edit Embedded Excel SpreadSheets

    There is a user at our company who cannot open Excel 2010 spreadsheets that have been embedded into Word 2010 documents. Sometimes the embedded Excel Spreadsheet will open with a Picture Tools menu ribbon. Other times he gets an error
    message that Excel is not installed on his computer. When other users open the same embedded objects on their computers they do not have any problems. I have replaced his computer but the problem continues with the new computer. I have also logged onto his
    computer with a different user account and I do not have a problem opening the embedded Excel spreadsheets. The user has Administrator rights on his own computer. We all have Windows 7 Enterprise and Office 2010 Professional Plus installed on our computers.
    Thanks in advance for any assistance with this issue.

    Hi,
    Try this:
    ============
    1.      
    Go to Excel.
    2.      
    Click File > Options >
    Advanced, then in the “General” section, remove the tick from “Ignore other applications that use Dynamic Data Exchange (DDE)“.
    For the general troubleshooting, you may refer to:
    Troubleshoot linked objects and embedded objects
    http://office.microsoft.com/en-us/word-help/troubleshoot-linked-objects-and-embedded-objects-HP005189818.aspx
    Best Regards,
    Sally Tang
    TechNet Subscriber Support in forum
    If you have any feedback on our support, please contact
    [email protected]   

  • Problem with embedded excel spreadsheet in Word document.

    I am having trouble with a word document that has an embedded excel spreadsheet in it.  If you double click on the spreadsheet to edit it, the following error message appears:
    "The program used to create this object is Excel.  That program is not installed on your computer.  To edit this object, you must install a program that can open the object."
    I know that Excel is installed on the PC.  The PC is running Windows XP SP3 x86 and Office Professional Plus 2007.  I have tried editing the spreadsheet on a PC running Windows 7
    Pro x64 with the same version of office and it works just fine.  I cannot find any differences in the setting between the two so I do not know why it works one place but not the other.
    Any ideas?

    If you double click on an Excel file in Windows Explorer, does Excel startup?  If not, right click on such a File and used the Open with item to set Excel as the default program for opening such files.
    If you need to do that, it may also overcome the issue with the embedded worksheet.
    Hope this helps.
    Doug Robbins - Word MVP,
    dkr[atsymbol]mvps[dot]org
    Posted via the Community Bridge
    "Flyguy009" wrote in message news:[email protected]...
    I am having trouble with a word document that has an embedded excel spreadsheet in it.  If you double click on the spreadsheet to edit it, the following error message appears:
    "The program used to create this object is Excel.  That program is not installed on your computer.  To edit this object, you must install a program that can open the object."
    I know that Excel is installed on the PC.  The PC is running Windows XP SP3 x86 and Office Professional Plus 2007.  I have tried editing the spreadsheet on a PC running Windows 7 Pro x64 with the same version of office and it works just fine. 
    I cannot find any differences in the setting between the two so I do not know why it works one place but not the other.
    Any ideas?
    Doug Robbins - Word MVP dkr[atsymbol]mvps[dot]org

  • Word doc with embedded Excel spreadsheet

    I have a Word (2010) doc in which I have embedded Excel (2010) spreadsheets.  We cannot open the spreadsheets after I convert the doc to pdf.  Is there a step I'm missing, or is this not possible?  Thanks

    Content of the embedded object in a Microsoft Office application does not come over to PDF.
    Basically PDF, being a completely different file format / technology from the MS applications' format(s)/technology, does not support this feature.
    You can create a PDF from Word that has not embedded objects.
    Now, with the PDF open in Acrobat you can attach the Excel files.
    Be well...

  • OLE2 Manipulation of embedded Excel object - need assistance

    We are struggling to successfully manipulate an OLE2 embedded Excel spreadsheet from within Forms to update the cells driving an Excel chart using data from an Oracle data table.
    All code examples we have found deal with opening an existing file based Excel spreadsheet using OLE2 and manipulating that object, but we have found nothing on opening an embedded Excel spreadhsheet object.
    Using the GET_INTERFACE_POINTER function passing in the name of the OLE2 item to obtain a handle to the spreadsheet embedded object seems to return a valid value, but referencing this handle in subsequent calls to GET_OBJ_PROPERTY fails.
    The documentation suggests that calling the GET_INTERFACE_POINTER function passing in the name of the OLE2 container item that contains the embedded spreadsheet should open the spreadsheet, activate the spreadsheet and return a handle to the spreadsheet. The behavior doesn't suggest this causing us to wonder if the docs are not accurate and we are really getting back a handle only to the OLE2 container and not to the spreadsheet itself. If this theory is true then how does one properly reference the spreadsheet?
    Can anyone shed some light preferably in the form of some working code examples of how we can manipulate Excel 'Cell' objects in a Forms OLE2 embedded Excel spreadsheet?
    Any assistance is greatly appreciated!
    [email protected]

    Try to use:
    DECLARE
      handle ole2.obj_type;
      MySheet ole2.obj_type;
      appHandle ole2.obj_type;
      ok_verb boolean;
      MyRange ole2.obj_type;
      args ole2.list_type;
      ret_val varchar2(32000);
      row pls_integer:=1;
      col pls_integer:=1;
      new_val varchar2(1000);
      verb_cnt_str varchar2(100);
      verb_cnt pls_integer;
      loop_cntr pls_integer;
      verb_name varchar2(1000);
    BEGIN
      select TO_CHAR( sysdate, 'dd.mm.yyyy hh.mi.ss' ) INTO new_val FROM dual;
      -- Open document
      ok_verb:=false;
      verb_cnt_str := Forms_OLE.Get_Verb_Count('OLE1');
      verb_cnt := TO_NUMBER(verb_cnt_str); 
      FOR loop_cntr in 1..verb_cnt
      LOOP   
        verb_name := Forms_OLE.Get_Verb_Name('OLE1',loop_cntr);
        IF   verb_name = 'Open'   -- In English language
             OR verb_name='Nrjp{r|'  -- In Russian language (CP1251)
             THEN
               EXEC_VERB('OLE1',verb_name);
               ok_verb:=true;
        END IF;
      END LOOP;
      -- Check the errors
      IF NOT ok_verb THEN
           Message( 'Can''t found correct VERB');
           return;
      END IF;
      -- Get handle of item. (Who is it ? I don't know. :) )
      handle := forms_ole.get_interface_pointer('OLE1');
      -- Get handle of Excel application
      appHandle := ole2.Get_Obj_Property( handle, 'Application' );
    -- If you want, You can hide the Excel application
    -- ole2.set_Property( appHandle, 'Visible', 0 );
      -- Get ActiveSheet
      MySheet:=ole2.Get_Obj_Property( handle, 'ActiveSheet' );
      -- Cells(row,col)
      args:=OLE2.CREATE_ARGLIST;
      OLE2.ADD_ARG(args,row);
      OLE2.ADD_ARG(args,col);
      MyRange:= OLE2.GET_OBJ_PROPERTY( MySheet,'Cells',args);
      OLE2.INVOKE (MyRange,'Activate');
      OLE2.DESTROY_ARGLIST(args);
      -- Get the Cell value
      ret_val:=OLE2.GET_CHAR_PROPERTY( MyRange,'Value' );
      -- And modify it (to current date)
      OLE2.SET_PROPERTY( MyRange,'Value', new_val );
      -- Release handle 
      OLE2.RELEASE_OBJ( MyRange );
      OLE2.RELEASE_OBJ( MySheet );
      -- Save document
      -- 1. Set DisplayAlerts property of Excel Application object
      -- to FALSE ( 0=false, 1=true )
      ole2.SET_PROPERTY( appHandle, 'DisplayAlerts', 0 );
      ole2.invoke( appHandle, 'Save' );
      -- Close the Application
      ole2.invoke( appHandle, 'Quit' );
      -- Release handle
      ole2.release_obj( appHandle );
      ole2.release_obj( handle );
      Message( 'prev. value in Cells(1,1)='||ret_val);
      Message( ' ', NO_ACKNOWLEDGE );
    END;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Working with Excel spreadsheet embedded in access table

    Hello!
    I have Access DB which contain Excel spreadsheet objects embedded in table. To work with DB I use ADO-Tool based on ActiveX. Data passed to my program from GetRows method as 2D array of variants. As I understand I should convert variant to object refnum and then use this refnum with property and invoke nodes to get data from spreadsheet. How to select data type for VariantToData to work with Excel spreadseet?

    Hi,
    Isn't it the same that using Index Array function? I believe that problem is in conversion of variant to refnum. For example, if I change refnum data type to string in Variant To Data, no error appears, and I've got some text data (see the attachment).
    Attachments:
    Temp.zip ‏25 KB

  • Property Loader with Excel spreadsheet embedded into a Word doc

    I know I can load test limits from an Excel doc using Property Loader but can I load test limits from an Excel table embedded in a Word document? Has anyone ever done this?

    Jules,
    I looked into how this could be accomplished, and it doesn't look like it is possible using off the shelf methods. Please if anyone figures out how to do that, i would strongly encourage you to write a Community Example . I think your closest work around would be to have the excel document linked in the word document http://office.microsoft.com/en-us/word/HA101208101033.aspx . Unfortunately in this situation, the excel file is still seperate from the word doc, and anyone reading the word doc would have to open the excel through the link to view its contents. Also if you move the document, you have to remember to move or change the path of the link. What is your motivation behind having the Excel Spreadsheet in a word document? I agree it would be a novel Idea, but as of now when you copy the object into the word document, it gets encapsulated by the .doc or .docx, and there is no clean easy way I have found to abstract it out. I also looked into the potential of dynamically linking the excel spreadsheet and word document, so when you would update one...it would update the other automatically, unfortunately this functionality doesn't exist (that I could find). Sounds like a pretty good product suggestion for microsoft though ; ) Keep me updated if you find a better work-around.
    Richard S -- National Instruments --Applications Engineer -- Data Acquisition with TestStand

  • How do i open and modify my pdf converted to excell spreadsheet

    How do I open and modify my PDF converted to Excell spreadsheet?

    After the conversion from PDF to .xlsx, you should be able to open the file in Excel and edit it like any other Excel file.

  • I cannot open files attached to an excel spreadsheet. I am using office for mac 2011. when double clicking object I only get the picture modifier windows.

    I cannot open files attached to an excel spreadsheet. I am using office for mac 2011. when double clicking object I only get the picture modifier windows.

    Preventing Microsoft Office to open recent documents at startup in Mac OS, Please see:
    http://www.frenchguys.com/wordpress/preventing-microsoft-office-open-documents-startup-mac-os-lion/
    It seems that the solution works for most people.
    In a terminal, enter the following:
     defaults write com.microsoft.Excel NSQuitAlwaysKeepsWindows -bool false

  • Unable to open excel spreadsheet in iWork 2.2

    I have just purchased iWork 2.2 and am unable to open any microsoft excel spreadsheets. Any suggestions?

    Susy,
    Running Software Update might help. Numbers 2.2 is not the latest revision. Not all Excel document types are compatible. What is the extension on the file you are having trouble with?
    Jerry

  • Unable to work in embedded Excel worksheets, errors out, and forced into task manager

    I am unable to work in Excel worksheets embedded Word 2010. I continually get the following errors/warnings: "Microsoft Word can't start the application required to open this object. An error occurred and this feature
    is no longer functioning properly. Would you like to repair this feature now?" & " "The program used to create this object is Excel. That program is either not installed on your computer or it is not responding. To edit this object, install Excel or ensure
    that any dialog boxes in Excel are closed." After these messages, I click to repair Word and upon a fresh reboot ...the same thing over and over and over again. After going through this procedure, I usually get another warning message regarding "OLE...." which
    pops up continually until I "Ctrl-Alt-Del" and stop the Excel item in processes.
    Currently I'm on Win7 64 Enterprise OS and 32 Bit Office 2010, Solutions that I have tried: disabling add-ins, updating, installing service packs with no success... 
    HELP PLEASEEEEEE!!!! 

    Hi,
    You disable COM Add-in in Excel or Word ?
    This problem might be related to some third-party in Excel,
    Close word, and start Excel worksheet.
    In Excel, click File menu, click Options > 
    Add-ins, click Go button in the Manage:
    COM Add-ins.
    Check if there has any add-ins, clear the checkbox to disable them.
    Start Word and try to edit your embedded files. They should now work without a problem.
    If the problem does not appear, restart Excel and add one check back each time to the list of Add-In, restart the Excel program, and
    repeat the above procedure. Once the issue reappears again, we can determine which add-in causes this problem and then disable it.
    Best Regards.
    William Zhou
    TechNet Community Support

  • Unable to view Public Folder Under Excel SpreadSheets in BO Explorer 3.1

    Hi ,
    I require to create Info Space using the data in an excel sheet. I am unable to configure the excel since the public folder is not present under the Excel Sheet option. Pls brief if this is got something to do with the version?
    Thanks in advance!

    Hi Priyank,
    To find your audit reports:
    https://service.sap.com/sap/support/notes/1389973
    For more information on audit, have a look at this post which contains usefull information about audit
    BOE XI R3 -- Auditing Parameters.
    Regards,
    Philippe

  • EXCEL spreadsheet with MACROS

    WILL NUMBERS 2009 SUPPORT AN EXCEL SPREADSHEET WITH EMBEDDED MACROS?

    Looks like Excel will get macros back. This is from Wikipedia:
    Microsoft has announced that the Mac OS X version will also be released in 2010. Microsoft Office 2011 for Mac will include more robust enterprise support and greater feature parity with the Windows edition. An all-new version of Outlook with full Exchange support will return to the Mac for the first time since 2001 and replace Entourage[47], and Visual Basic for Applications (VBA, aka "macro" support) will return after being dropped in Office 2008[48][49]. There is no public beta for the Mac version,[50] however, a copy of Beta 2 (Build 14.0.0.100326) has been circulated among many Mac file sharing websites. [51]

  • How to view excel spreadsheet in java

    Hello
    Is there a way to open an excel spreadsheet in java? I don't mean reading and writing from an excel file, but instead embedding excel in java. For example instead of launching excel using the Desktop class and opening a new excel window, Java would open an instance of excel and add it to Jframe or Jpanel. Sort of like what Eclipse does when you Open a file with In_Place Editor. Google returns results on how to use some windows dll file and using active x control or whatnot.. Was wondering if there is a better and simpler way..
    Thank you.

    oplead wrote:
    Hello
    Is there a way to open an excel spreadsheet in java? I don't mean reading and writing from an excel file, but instead embedding excel in java.Ah yes, "embed" is the word you want as your google keyword, not "open". My first try with "embed excel in Java" returned as the first link a page from a company named JIntegra for which this seems to be their main business. Here's the link I found, just for information:
    [http://j-integra.intrinsyc.com/support/kb/Article.aspx?id=30421|http://j-integra.intrinsyc.com/support/kb/Article.aspx?id=30421]

  • Create PDF Acrobat X Pro - does not display embedded excel 2010 tables in word 2010 properly

    Hello,
    I bought Acrobat X Pro and the first document I used 'Create PDF' on was a Word 2010 document with embedded (read linked) Excel 2010 tables.
    When I opened the document after creating it the linked tables had a little arrow in the corner of a white box with a help text message of "click here to activate". The pdf is basically unusable.
    Is there a setting to ensure that these embedded excel tables are created as normal tables - I do not want to have to keep pasting in tables/images into my Word documents when they are all updating automatically.
    Thanks in advance for any help you can give me.
    Regards,
    Craig

    Hello,
    i am having exactly the same issue with Acrobat X Pro - with linked Excel 2010 tables in Word 2010.
    Has there been a resolution to this eissue - it is potentially very time consuming to work around this issue for me.
    I would post my files but I don't know how to attach them to the thread - only my second post .
    Cheers,
    slobbering_dog
    This is the Word File - the table is an Excel 2010 spreadsheet linked (via Paste Special >Link) .
    This is the resultant PDF file:
    Thanks in advance - again !!
    Message was edited by: slobbering_dog_72

Maybe you are looking for

  • Album Art not showing in Artists view!

    My issue is that the artwork shows in the Albums view but when I switch to Artists view, some dissapear. Check "Demi Lovato", "Avril Lavigne" and "El Cuarteto de Nos" for reference to my problem. Hope to get a solution

  • Syncing iPhoto albums to iPhone 4-is there a limit to number of photos in album

    I was able to sync a small album with 69 photos from iPhoto to the iPhone 4 running iOS 4.3.5 without a problem. First I synced it as "Last Import" with no edits whatsoever, fresh from downloading from the camera, and then I synced as an album with a

  • Screen exit - LM46 RF transaction

    Hi, This is related to the screen exit of RF transaction LM46. We have created a screen exit for logical screen 0212 of SAPLLMOB for the RF transaction LM46 and added this screen in the screen management config. The custom sub screen 1212 for the use

  • How to change Vista German to English?

    Hi, During a recent visit, I bought a laptop in Germany with Vista Home Premium. The display language is German. I do not understand German and I live in East Africa. How can I change the language without having to buy another copy of Windows? Please

  • HP Solution Center Fails To Launch

    I have been unable to lauch HP Solution Center ever since I acquired my HP Office Jet Pro 8500. In looking at possible solutions on the HP site I tried to follow the recommended steps. When it got to the point where I checked msconfig to see if HPQTR