PowerPivot Excel 2013 crashes after column rename in source datatabase

Hello,
Using Windows 8.1, Excel 2013 64Bits, PowerPivot Add-In :
Not using a SQL Server TabularModel just a local Excel Model.
Having 32MB Ram  memory.
Readed a table from a SQL Source that contains 13.000.000 records. After loading I discoverd that in the Source one of the columnn names is incorrect. It's name ExecudingProvider and should be ExecutingProvider, so I changed the SQL Server source table and
added the "t" to ExecutingProvider...
Back in PowerPivot I do go to the PowerPivot Data model > Design > Table Properties (not sure of translation using dutch edition but you should be able to find it)
It mentions that it is missing the ExecudingProvider. It;s indeed gone from the Columns that are listed, in place I do see the ExecutingProvider column which is not selected, clicked the checkbox to select the new column name. When clicking Save PowerPivot
starts loading. On reach of 13.000.000 records PowerPivot crashes saying an error has occurred, no real specification on what error and restarts excel automatically.
My work arround for know is to remove the table from the model and add it again, causing to recreate all relation ships. This should not be the case I think.
Do other have this same problem and did you figure out what is going wrong?
Regards,
Arjan

In the event view of the Notebook I can only see the following related errors:
Faulting application name: EXCEL.EXE, version: 15.0.4603.1000, time stamp: 0x53162a3a
Faulting module name: EXCEL.EXE, version: 15.0.4603.1000, time stamp: 0x53162a3a
Exception code: 0xc0000005
Fault offset: 0x000000000070c3eb
Faulting process id: 0x1f9c
Faulting application start time: 0x01cf84820bcf4ee4
Faulting application path: C:\Program Files\Microsoft Office\Office15\EXCEL.EXE
Faulting module path: C:\Program Files\Microsoft Office\Office15\EXCEL.EXE
Report Id: cb310f11-f094-11e3-9cbd-6c626d373f9c
Faulting package full name:
Faulting package-relative application ID:
And
The program EXCEL.EXE version 15.0.4603.1000 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel.
Process ID: 1cc0
Start Time: 01cf84a1a42cd29e
Termination Time: 0
Application Path: C:\Program Files\Microsoft Office\Office15\EXCEL.EXE
Report Id: ffbd693c-f099-11e3-9cbd-6c626d373f9c
Faulting package full name:
Faulting package-relative application ID:

Similar Messages

  • Excel 2013 crashes after I install Power Query add-in

    Excel 2013 Professional 64 Bit crashes while opening after installing PowerQuery 64 bit add-in. 
    Power Query File version: 
    PowerQuery_2.17.3850.242 (64-bit) [en-us].msi
    Excel Version: Microsoft Excel 2013 (15.0.4675.1000) MSO (15.0.4675.1002) 64-bit
    Office Version: 15.0.4569.1506
    Excel just opens fine after I uninstall the add-in

    Interesting. Any suggestions for Sunny?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Excel 2013 crash - related to digital signature?

    This is a cross-posting of a thread originally started in Microsoft Answers (Office- Excel) forum, advised to post in this forum by MS support engineer Mohan Suryanarayan (link to other forum: here).
    I have a VB macro in file A (which otherwise contains only several Excel Tables with named ranges). My digital signature (for signing code) is attached to file A.
    As the macro executes, the Open file dialog is called up so that the User can select a secondary file to open (file B or C).
    Files B and C contain several sheets with formulas and Excel Tables, and also their own extensive VB macros. My digital signature is also attached to files B & C.
    The remainder of the macro in file A simply executes an update of the Excel Tables in the secondary file, before saving & closing it.
    I have been finding that during execution of the file A macro, Excel crashes and closes all open Excel files.
    If I remove the digital signature from the secondary files then the macro in file A executes with no problem.
    The macro was written in Excel 2007 and on a different laptop, with different digital signature, and used to have no problem at all. When a new laptop was purchased a new digital signature was obtained and placed into all of the files.
    Execution of file A is a critical process - I need help with stopping the crash, while maintaining a digital signature in the secondary files (so that their own macros can execute).
    Event Viewer error shows the following:
    Faulting application name: EXCEL.EXE, version: 15.0.4667.1000, time stamp: 0x543d366c
    Faulting module name: mso.dll, version: 0.0.0.0, time stamp: 0x5447696f
    Exception code: 0xc0000602
    Fault offset: 0x011aafdd
    Faulting process id: 0x2d58
    Faulting application start time: 0x01d01e17eafcd0bb
    Faulting application path: C:\Program Files\Microsoft Office 15\root\office15\EXCEL.EXE
    Faulting module path: C:\Program Files (x86)\Common Files\Microsoft Shared\Office15\mso.dll
    JL Latham replied:
    Tom, all I can give you is relatively non-information.  I haven't experienced that type of behavior even in Excel 2013 with digitally signed macros in multiple workbooks.  But my digital signature is a commercial one from DigiCert, not
    self-cert.  I'm not even sure what piece of Excel or Office processes the digital signature (that is, whether it is mso.dll or not).  But your whole process has more moving parts than most of mine involving multiple workbooks do - I quite often turn
    off .EnableEvents when doing things like that just so event driven macros in the other workbook(s) do not execute.
    Do the macros in the 'B files' have to execute during all of this processing in file A?  If not, have you tried turning interrupts off:
    Application.EnableEvents = False
    before starting to work with the B-files?  Maybe something in them, such as a Worksheet_Change() or other event triggered process is messing things up?
    If you do use  Application.EnableEvents=False, remember that you MUST re-enable that later in the code with Application.EnableEvents=True to get responses to things like button clicks, changes in a worksheet or other event driven processes
    to run 'normally' again.
    Have you looked at this discussion:
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-excel/excel-2013-crashing-immediately-when-attempting-to/ea2ab100-5525-4a0d-a3cf-6977319f954f
    Sounds very similar to yours - original signature created in 2007, and crashing in 2013.  Some suggestions were made, but whether they fixed the issue or not is unknown: OP never came back and said "fixed it" or "didn't fix it".
    I replied:
    In answer, the secondary B files don't execute any part of their macros during the A file process, and I hadn't included an EnableEvents = False within the file A code. However, I have just tried it to check if it made any difference and unfortunately it didn't.
    I had read the thread you gave a link to before posting, and also the sub threads given within that one, but didn't see anything I thought of immediate parallel other than an Excel 2013 crash.
    The way I read the linked thread was that a User added a signature in Excel 2007 and when they tried to open the file Excel (2007?) crashes, although other people using Excel 2013 can open it (not clear whether it means others can open the one with
    the 2007 signature or without it).
    Anyway, the differences in my situation are that:
    (1) my B-files were originally created in Excel 2007 on a different laptop to current and had their own signature attached. I maintain a 'stock' of B-file versions, some of which have the old signature and some the new. If I run the A-file macro
    on one of the B-files with the old signature then it executes ok;
    (2) I am able to open the B-files ok, no matter whether the signature in them derives from the old laptop with Excel 2007 or the new laptop with Excel 2013;
    (3) the macros within the B-files execute ok (this includes any versions of the B-files which still have an old signature attached, by removing the old signature and replacing with the new and executing on the new laptop);
    (4) the offending operation which triggers the crash (when the B-files have the new signature attached) is a Resize of the Excel Tables within the B-file. I understand that I may eventually have to find a workaround for this operation but initially
    I want to sort out the signature issue (I'm reasonably sure the signature issue is not a red herring where the Resize is the 'real' problem).
    Regards, Tom

    Hi,
    According to your description, this issue occurred with some particular files that stored in SharePoint site. Did the user  download the file to local disk to print?
    Based on the event log >>Faulting module name: EXCEL.EXE<<, it does not show the root Faulting module. Thus, please try to follow this KB to do general troubleshooting:
    https://support.microsoft.com/en-us/kb/2758592
    Then, if you have used "printer status application", please go to Device settings -> Installable options -> Printer Status notification and select disable.
    If this issue still exists, we may need to collect the App crash dump file:
    https://technet.microsoft.com/en-us/sysinternals/dd996900.aspx
    You can try to analyze dump by yourself if you would like to:
    How to analyze app crash dump file:
    http://blogs.technet.com/b/askperf/archive/2007/05/29/basic-debugging-of-an-application-crash.aspx
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Excel 2013 crashes when creating VFP OLE DB Data connection

    Hi all,
    I don't know how often the DBF format is used in Office but it seems some demand still exists because Microsoft created 64 bit version of dBase ODBC and OLE DB driver (in Access data engine). Then I don't understand why Microsoft ignores its own FoxPro
    DBF data format because FoxPro ODBC driver is not supported already and no 64 bit version of VFP OLE DB driver is planned...
    I am testing DBF file import to Excel 2013 (32 bit) but it crashes instantly. I have VFP OLE DB driver (the last version), some small DBF file, and I am trying to read it as external data in Excel.
    Steps to reproduce (menu prompts are translated, so some differences may occur):
    Open empty worksheet
    Click "Other data sources" on Data ribbon
    Select Data Connection Wizard and from the list of available drivers select "Other" and click "Next"
    A list of OLE DB providers installed appears, select Microsoft OLE DB Provider for Visual FoxPro and click "Next >>"
    Excel 2013 crashes...
    This process works in Excel 2010 and 2007 so the problem must be in Excel 2013...
    The question is how to read DBF data in FoxPro format when there is no older Office version available?

    To connect to a Visual FoxPro database or table in Excel
    Open an Excel worksheet.
    From the Data menu, point to Import External Data, and click
    Import Data.
    In the Select Data Source dialog box, click New Source Data Connection.
    In the Data Connection Wizard, select Other/Advanced.
    In the Provider tab, select Microsoft OLE DB Provider for Visual FoxPro.
    The Connection tab in the Data Link Properties dialog box appears.
    To connect to a Visual FoxPro database or table in Word
    Open a Word document.
    From the View menu, point to Toolbars, and click
    Database.
    On the Database toolbar, click the Insert Database icon.
    In the Database dialog box, click Get Data.
    In the Select Data Source dialog box, click New Source Data Connection.
    In the Data Connection Wizard, select Other/Advanced.
    In the Provider tab, select Microsoft OLE DB Provider for Visual FoxPro.
    The Connection tab in the Data Link Properties dialog box appears.
    To add a Visual FoxPro database or table folder
    On the Connection tab and in the Select or enter a database name box, type path and name of the database or table folder you want. 
    -or- 
    To browse for a Visual FoxPro database or table folder, click the ellipsis (...) button to the right of the
    Select or enter a database name box to open the Configure Connection dialog box.
    Specify a different collating sequence if desired.
    To test the connection, click Test Connection. If connection is successful, click
    OK.

  • Access 2013 crashes after mail merge in Word 2013

    We have several Word templates that query an Access database to populate themselves. After the mail merge is complete, when we close Word then Access immediately crashes every time. This started after upgrading from Office 2003 to 2013. We tried updating
    the Word Doc to 2013 but then it would not connect to the data source at all. Last, we also tried to Compact and Repair the database with no luck.
    We searched for an Access Hot Fix but could not find anything that matches our issue. Any assistance would be greatly appreciated.

    Use a table or query as the data source
    Open the source database, and in the Navigation Pane, select the table or query that you want use as the mail merge data source.
    On the External Data tab, in the Export group, click
    More , and then click Merge it with Microsoft Office Word .
    The Microsoft Word Mail Merge Wizard starts.
    Select whether you want to create the link in an existing document or in a new document, and then click
    OK.
    If you chose to link to an existing document, in the Select Microsoft Word Document dialog box, locate and select the file, and then click
    Open.
    Word starts. Depending on your choice, Word opens either the document you specified or a new document.
    In the Mail Merge pane, under Select document type, click
    Letters and then click Next: Starting document to continue to step 2.
    In step 2, click Next: Select recipients.
    In step 3, you create the link between the data source in Access and the Word document. Because you started the wizard from Access, this link is created automatically. Under
    Select recipients, note that Use an existing list is selected, and the name of your data source is displayed under
    Use an existing list.
    Click Edit recipient list if you want to customize the contents of the table or query.
    You can filter, sort, and validate the data. Click OK to continue.
    Click Next: Write your letter to continue. Follow the remaining instructions in the
    Mail Merge pane, and in step 5, click Next: Complete the merge.
    Other ways to use a table or query as the data source
    You can specify a table or query as a data source in additional ways. For example, you can export the table or query from Access to an ODBC database, a Microsoft Office Excel 2013 file, a text file, or any other file format that is compatible with Word,
    and then link to the resulting file by using the Word Mail Merge Wizard.
    If you have not already exported the table or query , do so. In Access, in the Navigation Pane, select the table or query that you want to use, and on the
    External Data tab, in the Export group, click the format you want to export to, and then follow the instructions.
    In Word, if the Mail Merge pane is not displayed, on the
    Mailings tab, in the Start Mail Merge group, click the arrow under
    Start Mail Merge, and then click Step by Step Mail Merge Wizard. The
    Mail Merge pane appears.
    In step 3 of the Mail Merge pane, under Use an existing list, click
    Browse or Edit recipient list.
    In the Select Data Source dialog box, specify the data file that you created in Access, and then click
    Open.
    Follow the instructions in any dialog boxes that follow. In the Mail Merge Recipients dialog box, review and customize the contents of the file. You can filter, sort, and validate the contents before you continue.
    Click OK, and then click Next: Write your letter in the
    Mail Merge pane. For more instructions on customizing your mail merge, see Word Help.

  • Excel 2013 crashes when trying to open existing worksheets from previous versions of Excel

    Hello
    I have windows 8 and Excel 2013 on my system. I need to access previously created worksheets (in older versions of Excel), however, when I attempt to open them the Excel crashes.
    The is not what I expected from getting the latest version. I telephoned Microsoft who advised that there was a compatabilty problem with no work around at this stage.
    I found that the only way round it was to use an (download free) alternative non-Microsoft program
    http://www.openoffice.org/ and copy into the 2013 Excel as a new worksheet. A little disappointing after purchasing the Excel .
    Have I got this wrong or is there a Microsoft solution to this issue???

    Hi,
    Try the following steps:
    Open Excel 2013, and go to
    File –> Options –> Trust Center.
    Under
    Trust Center settings, select Protected View and
    uncheck all options under it.
    Restart the Excel 2013 to check the issue.
    Jaynet Zhang
    TechNet Community Support

  • PowerPivot Excel 2013 Calculted Fields using Usersname

    Hello,
    I'm using Excel 2013 with PowerPivot.  I have one
    table containing a column with the sales person (verkoper) please see the
    screenshot for more details.  I'm looking for a way to add a calculated
    column, the value should depend on the user that is logged in.<o:p></o:p>
    In Tsql it's pretty easy using something like “case
    when verkoper = current_user then verkoper else 'other' end”<o:p></o:p>
    Is there a way to do this in Excel PowerPivot. Help
    would be greatly appreciated, I’ve been looking for an answer for some time
    now. I guess I’m looking at the wrong direction….??
    Sorry.. not able to insert the picture yet

    Hey Wouter,
    as the Power Pivot Model is static to the point that you have to refresh the data to refresh the calculated columns I think this is not what you want to achieve.
    Imagine I (User A) create a PowerPivot, create a calculated column which represents what you want to see. I then share this file with you (User B). As soon as you open the PowerPivot Model you will see "my" results. You would have to refresh the data to
    achieve the result depending on User B.
    Even if it would work I doubt it would meet your expectation.
    As Olaf just said, the only way would be to work it as a measure.
    I hope I was of some help!
    Kind regards, please mark helpful posts! :)

  • Excel 2013 crashes every single time I click on Power Query Tab and try anything

    I have Windows 7 Professional 64 bit. I installed Office 2013 Professional Plus 64 bit. I dont have any older versions of office. I downloaded and installed power query 64 bit. I start excel, click on power query tab and select any option, excel crashes
    and closes, every single time. 
    The event viewer says "Excel is running into problems with "microsoft power query for excel" add-in If it keeps happening disable this add in and check for updates. 
    P1: 700160
    P2: 15.0.4420.1017
    Event ID: 300
    Task Category : None
    Level: Information
    User: N/A
    Keywords: Classic
    Excruciatingly frustrating to have such an unintuitive message. What should I do to get power query working in excel 2013 and most importantly for excel to function ?

    Hi,
    It should be the latest version of Power Query. Make sure there is no old version of power Query installed in your computer.And what happens if you reinstall Power Query add-in or repair your office program?
    Also Microsoft Power Query for Excel requires Internet Explorer 9 or greater.
    Wind Zhang
    TechNet Community Support

  • Active Directory Domain Services crash after Administrator renames object in Active Directory Users and Computers

    Hello.
    We have two domain controllers - node1 (Windows 2008 R2) and node2 (Windows 2012 R2). When administrator connects to node2 and tries to rename some object in AD (for example, user) AD Domain Services crashes and reboot server after 60 seconds.
    In Events I can see these messages:
    Log Name:      Directory Service
    Source:        Microsoft-Windows-ActiveDirectory_DomainService
    Date:          04.03.2014 12:37:58
    Event ID:      1173
    Task Category: Internal Processing
    Level:         Warning
    Keywords:      Classic
    User:          domain\admin
    Computer:      NODE2.domain.example
    Description:
    Internal event: Active Directory Domain Services has encountered the following exception and associated parameters.
    Exception:
    c0000005
    Parameter:
    0
    Additional Data
    Error value:
    7ffc7c38e45d
    Internal ID:
    0
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-ActiveDirectory_DomainService" Guid="{0e8478c5-3605-4e8c-8497-1e730c959516}" EventSourceName="NTDS General" />
        <EventID Qualifiers="32768">1173</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>9</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2014-03-04T06:37:58.116264800Z" />
        <EventRecordID>881</EventRecordID>
        <Correlation />
        <Execution ProcessID="572" ThreadID="2580" />
        <Channel>Directory Service</Channel>
        <Computer>NODE2.domain.example</Computer>
        <Security UserID="S-1-5-21-3794920928-4165619442-305938157-2047" />
      </System>
      <EventData>
        <Data>c0000005</Data>
        <Data>7ffc7c38e45d</Data>
        <Data>0</Data>
        <Data>0</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Microsoft-Windows-Wininit
    Date:          04.03.2014 12:37:58
    Event ID:      1015
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      NODE2.domain.example
    Description:
    A critical system process, C:\Windows\system32\lsass.exe, failed with status code c0000005.  The machine must now be restarted.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Wininit" Guid="{206f6dea-d3c5-4d10-bc72-989f03c8b84b}" EventSourceName="Wininit" />
        <EventID Qualifiers="49152">1015</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-03-04T06:37:58.000000000Z" />
        <EventRecordID>189578</EventRecordID>
        <Correlation />
        <Execution ProcessID="0" ThreadID="0" />
        <Channel>Application</Channel>
        <Computer>NODE2.domain.example</Computer>
        <Security />
      </System>
      <EventData>
        <Data>C:\Windows\system32\lsass.exe</Data>
        <Data>c0000005</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Application Error
    Date:          04.03.2014 12:37:58
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      NODE2.domain.example
    Description:
    Faulting application name: lsass.exe, version: 6.3.9600.16384, time stamp: 0x5215e25f
    Faulting module name: ntdsai.dll, version: 6.3.9600.16421, time stamp: 0x524fcaed
    Exception code: 0xc0000005
    Fault offset: 0x000000000019e45d
    Faulting process id: 0x23c
    Faulting application start time: 0x01cf3773fe973e1b
    Faulting application path: C:\Windows\system32\lsass.exe
    Faulting module path: C:\Windows\system32\ntdsai.dll
    Report Id: 85cfbe32-a367-11e3-80cc-00155d006724
    Faulting package full name:
    Faulting package-relative application ID:
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-03-04T06:37:58.000000000Z" />
        <EventRecordID>189576</EventRecordID>
        <Channel>Application</Channel>
        <Computer>NODE2.domain.example</Computer>
        <Security />
      </System>
      <EventData>
        <Data>lsass.exe</Data>
        <Data>6.3.9600.16384</Data>
        <Data>5215e25f</Data>
        <Data>ntdsai.dll</Data>
        <Data>6.3.9600.16421</Data>
        <Data>524fcaed</Data>
        <Data>c0000005</Data>
        <Data>000000000019e45d</Data>
        <Data>23c</Data>
        <Data>01cf3773fe973e1b</Data>
        <Data>C:\Windows\system32\lsass.exe</Data>
        <Data>C:\Windows\system32\ntdsai.dll</Data>
        <Data>85cfbe32-a367-11e3-80cc-00155d006724</Data>
        <Data>
        </Data>
        <Data>
        </Data>
      </EventData>
    </Event>
    In node2 we installed all available updates and hotfixes.

     Hi Azamat Hackimov,
    Regarding to error messages, it seems that the
    ntdsai.dll file caused the issue. Based on current situation, please use
    sfc /scannow command to scan protected system files and check if find error and repair. Meanwhile, you can also navigate to the location of this DLL file and confirm details.
    In addition, Windows Server 2012 R2 has reboot unexpectedly. Please check if you get some dump file and then analysis it. It may help us to find the root reason. Please refer
    to the following KB.
    How to read the small dump memory dump file that is created by Windows if a crash occurs.
    http://support.microsoft.com/kb/315263/en-us
    By the way, it is not effective for us to debug the crash dump file here in the forum. If this issues is a state of emergency for you. Please contact Microsoft Customer Service
    and Support (CSS) via telephone so that a dedicated Support Professional can assist with your request.
    To obtain the phone numbers for specific technology request, please refer to the web site listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;OfferProPhone#faq607
    Hope this helps.
    Best regards,
    Justin Gu

  • Problem with Excel 2013, crashing unexpectedly

    I have problem with Office, it's crashing without any specific reason. I can't describe what exactly triggers crashing, but there is lots of copy and pasting on that workstation between excel worksheets. RAM has been tested, Office suite has been reinstated
    and even all of hardware has been changed.
    If there any suggestion, I would really appreciate them.
    If you need additional information please ask.
    Faulting application name: EXCEL.EXE, version: 15.0.4701.1001, time stamp: 0x54e30a7b
    Faulting module name: mso.dll, version: 0.0.0.0, time stamp: 0x54d9bfd6
    Exception code: 0xc0000602
    Fault offset: 0x011aee88
    Faulting process id: 0x1990
    Faulting application start time: 0x01d0773e764ce473
    Faulting application path: C:\Program Files\Microsoft Office 15\Root\Office15\EXCEL.EXE
    Faulting module path: C:\Program Files\Common Files\Microsoft Shared\Office15\mso.dll
    Report Id: 66154c61-e40f-11e4-afd6-d43d7eb40d36
    Faulting package full name: 
    Faulting package-relative application ID: 
    System
    Provider
    [ Name]
    Application Error
    EventID
    1000
    [ Qualifiers]
    0
    Level
    2
    Task
    100
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2015-04-16T08:05:52.000000000Z
    EventRecordID
    35372
    Channel
    Application
    Computer
    Security
    EventData
    EXCEL.EXE
    15.0.4701.1001
    54e30a7b
    mso.dll
    0.0.0.0
    54d9bfd6
    c0000602
    011aee88
    1990
    01d0773e764ce473
    C:\Program Files\Microsoft Office 15\Root\Office15\EXCEL.EXE
    C:\Program Files\Common Files\Microsoft Shared\Office15\mso.dll
    66154c61-e40f-11e4-afd6-d43d7eb40d36

    Hi,
    According to your description, >>RAM has been tested, Office suite has been reinstated and even all of hardware has been changed.<< I noticed that you have tired several methods. Then, based on the log,>>Faulting module path: C:\Program
    Files\Common Files\Microsoft Shared\Office15\mso.dll<<, please try the following steps:
    Renamed the MSO.DLL in C:\Program Files\Microsoft Office 15\root\vfs\ProgramFilesCommonX86\Microsoft Shared\OFFICE15
    The copied the MSO.DLL from C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15
    to C:\Program Files\Microsoft Office 15\root\vfs\ProgramFilesCommonX86\Microsoft Shared\OFFICE15
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Exchange 2013 crash after installing CU9, can i use the database on a backup?

    so just installed tried to install CU 9 on Exchange 2013, installed fine and rebooted BSOD problem with ndis.sys, have a backup but dont wanna loose too much mail, can i restore the old backup and copy the databases and logs from the crashed exchange? if it is possible would i need to run some commands afterwards or would it just work?
    This topic first appeared in the Spiceworks Community

    What’s new: June 2015
    Here's a roundup of what's been happening in the world of Office 365 over the last month:
    Office for Android phone is here—The new Word, Excel and PowerPoint apps for Android phone have arrived! Review and edit documents on the go, present from your phone, and quickly find the files you were working on in the office or on your tablet. Access files stored in OneDrive, Dropbox, Google Drive and Box. You can download the apps today, and soon they’ll come preloaded on Samsung, Sony, LG and more Android phones.
    Wunderlist now part of Microsoft—Microsoft recently acquired Wunderlist, the market-leading to-do list app. Known for its ease of use and innovative design, Wunderlist provides an easy way to capture, organize and collaborate on lists and to-dos—for home, school and work. It’s a fantastic app and it’s available on...

  • Excel 2013 hangs after sharing document per email

    Hello everyone.
    We have an issue with Outlook 2013.
    If you disable local email caching in Outlook 2013 and you are trying to share a document via email in e.g. Excel (but also Acrobat reader and several other programs) the email gets send, but Excel hangs (not responding). 
    When you enable the local cache the problem disappears.
    This is an issue for us, since we are using ssd's with limited capacity and the cache file can increase untill somewhere between 25 and 30 GB.
    Is there a different solution to this issue? And why is this happening in the first place?

    Hi,
    Try to test whether the issue will occur to all the computers. If not, then try to repair and disable all the add-ins to check the issue.
    Jaynet Zhang
    TechNet Community Support

  • How to merge two tables in powerpivot excel 2013?

    Hi 
    I have a few tables imported from two different systems/databases/tables and I need to merge them into one table in Power Pivot.
    All of the import tables have some common fields such as Name, Value. e.g. Staff Expenses, Staff Sales table
    The output table at lest with 3 columns (Name, Value, and Data Source). The Data Source column indicates which table the row value comes from.  
    How can I merge the tables using DAX?
    Regards
    Joe Lee
    update: Just add a few sample data and chart I was required to develop
    Name
    Expense
    Joe
    1000
    James
    2000
    Name
    Sales
    Joe
    3000
    James
    10000
    The chart I need to develop
    I was thinking using DAX to merge the table as follow for the chart
    Name
    DataSource
    Value
    Joe
    Expense
    1000
    James
    Expense
    2000
    Joe
    Sales
    3000
    James
    Sales
    10000
    jl

    Hi Joe,
    DAX doesn't currently have a UNION function so you'll need to use a workaround such as
    this to achieve the result but it won't be suitable for all scenarios. I would generally recommend using the Append capability
    in Power Query for this type of task as it would be a much better fit. However, I should highlight that using Power Query would limit your refresh options to a manual refresh from within the workbook or scheduled refreshes using Power BI
    for Office 365. If this is not a deal breaker then Power Query is the way to go.
    Regards,
    Michael Amadi
    Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to vote it as helpful :)
    Website: http://www.nimblelearn.com, Twitter:
    @nimblelearn

  • Outlook 2013 crashes after sending 3 emails

    Hi David, thanks for the quick reply.  If my reply shows up twice, it's not my fault!
    The new profile is just an Outlook profile, not a user profile. 
    So far as I know, they don't have any spare/unused PCs that I can swap out, but I'll check. 
    The only PST is for the mail address, there aren't any other accounts or mailboxes in the profile.
    The event viewer shows nothing (that I can find, anyway).  It seems as if Outlook just locks up before it can tell the system anything. 
    I am curious about what else "Safe mode" does not do, that normal mode does.  All the add-ins remain inactive.
    Thanks again for reply, I will test and report back as soon as possible.

    Greetings, folks. One of our clients has a PC that will only allow the user to send 3 emails before it locks up. "Outlook.exe" is still running in task manager and cannot be killed. The PC has to be shut down hard (holding the power button in) as it hangs during a soft restart.The PC is a Lenovo E540 running Windows 7 Pro 64-bit. Office is Office 2013 Home and Business with Outlook attached to an Office 365 account. All software up to date.If we start Outlook in Safe mode (just Outlook, not Windows) then everything works fine. I can send dozens of test emails with no problems at all.
    So here's what I've done.Disabled Hardware Acceleration, including adding an entry in the Registry (HKCU/Software/Microsoft/Office/15/Graphics/DisableHardwareAcceleration=1) Effect: no change.
    Disabled all add-ins. Effect: no change.
    Uninstalled the...
    This topic first appeared in the Spiceworks Community

  • Excel 2013 crashes deleting tabs

    what can be done? in many files

    To connect to a Visual FoxPro database or table in Excel
    Open an Excel worksheet.
    From the Data menu, point to Import External Data, and click
    Import Data.
    In the Select Data Source dialog box, click New Source Data Connection.
    In the Data Connection Wizard, select Other/Advanced.
    In the Provider tab, select Microsoft OLE DB Provider for Visual FoxPro.
    The Connection tab in the Data Link Properties dialog box appears.
    To connect to a Visual FoxPro database or table in Word
    Open a Word document.
    From the View menu, point to Toolbars, and click
    Database.
    On the Database toolbar, click the Insert Database icon.
    In the Database dialog box, click Get Data.
    In the Select Data Source dialog box, click New Source Data Connection.
    In the Data Connection Wizard, select Other/Advanced.
    In the Provider tab, select Microsoft OLE DB Provider for Visual FoxPro.
    The Connection tab in the Data Link Properties dialog box appears.
    To add a Visual FoxPro database or table folder
    On the Connection tab and in the Select or enter a database name box, type path and name of the database or table folder you want. 
    -or- 
    To browse for a Visual FoxPro database or table folder, click the ellipsis (...) button to the right of the
    Select or enter a database name box to open the Configure Connection dialog box.
    Specify a different collating sequence if desired.
    To test the connection, click Test Connection. If connection is successful, click
    OK.

Maybe you are looking for

  • LR3 to LR4 upgrade from PC to mac

    i have LR3 installed in my windows based PC, i just got an imac and want to install LR4, can i just purchase an "upgrade" instead of buying the "full" version?

  • Where can i find SLD Cim-Model 1.5.26 ?

    Where can i find Cim-Model 1.5.26 to download... The only one i can find is in CR Content and this are versions <1.4.18 best regards Christoph

  • DataOutputStream writeChars() question

    I need to write array values that represent a data table to a text file. The array is an Object[]. Here is what I have for each of the data members of the table: dos.writeChars("CRR"); dos.writeChars(stp1bt1[2].toString()); dos.writeChars("\n"); wher

  • Combobox

    How make Combobox in Report?

  • IBook puts itself to sleep and/or shuts down

    My gf's iBook G4 (14-inch Early 2004) puts itself to sleep at random. No amount of pressing keys will wake it up, only pressing and holding the power button to shut it off completely, then rebooting, will get it back. Sometimes it shuts itself off co