Top 5 Ways to Fix Excel 2010 File Not Opening Error | Stellar

Top 5 Ways to Fix Excel 2010 File Not Opening Error | Stellar

Ian Lv13

Top 5 Ways to Fix Excel File Not Opening Error

Summary: MS Excel users sometimes face issues while using the MS Excel application. One such issue is the Excel file not opening error. In this post, we’ve mentioned the reasons that may result in this error and the ways to resolve it. Also, you’ll find about an Excel repair software that can help you repair corrupt Excel files.

Free Download for Windows

Several Microsoft Excel users have reported encountering the ‘Excel file not opening’ error when opening their Excel file. There are several reasons that may cause this error. In this post, we’ll be discussing the reasons that may lead to the ‘Excel file not opening’ error and the top 5 ways to fix this error.

Why Does the ‘Excel File Not Opening’ Error Appear?

Following are some possible causes that may result in the ‘Excel file not opening’ error:

  1. There may be a problem with an add-in that is preventing you from opening the Excel files.
  2. There’s a chance that your Excel application is faulty.
  3. Your Excel program is unable to communicate with other programs or the operating system.
  4. The file association might have been broken. This is a common problem faced by users who have upgraded their Excel application or operating system.
  5. The file you’re trying to open is corrupted.

5 Ways to Fix Excel File Not Opening Error

Let’s explore the ways to resolve the Excel file not opening error:

1. Uncheck the Ignore DDE Checkbox

Dynamic Data Exchange (DDE)allows Excel to communicate with other programs. The Excel error may occur due to incorrect DDE settings. You need to ensure that the correct DDE configuration is enabled. Follow the steps provided below:

  • Launch your MS Excel file.
  • Go to File > Options.

options menu

  • Now click on Advanced.

Advanced options

  • Further, find the General option on the screen.

General Option uncheck Dynamic Data Exchange Option

  • Uncheck the option **‘Ignore other applications that use Dynamic Data Exchange (DDE)**’.
  • Click OK to save the changes.

2. Reset Excel File Associations

When you launch your Excel file, the file association ensures that the Excel application is used to open the file. You can try to reset these associations and see if Excel opens after this. Proceed with the following steps to do so:

  • Navigate to Start Menu and launch Control Panel.
  • Now, navigate to Programs > Default Programs > Set Your Default Programs.

Set-Your Default Programs

  • A new window will open. Herein, find the Excel program in the list and select it. Now, select the option ‘Choose defaults for this program’. Click OK.

Set Defaults

  • A new window for ‘Set Program Associations’ will open.
  • Check the box against the ‘Select All’ option.
  • Further, click Save to reset the Excel File Associations settings.

Set Program Associations

3. Disable Add-Ins

Many people install third-party add-ins to enhance the application’s functionality. Sometimes, these add-ins can create an issue. Follow the below-mentioned steps to disable the problem creating add-ins:

  • Launch MS Excel application.
  • Navigate to File > Options > Add-ins.

Click on Add ins Option

  • In the window that opens, go to the Manage option at the bottom.
  • Herein, select the COM Add-ins option from the dropdown list. Click Go.

Select Com Addins

  • In the COM Add-ins window, uncheck all the boxes to disable the add-ins. Click OK.

Diasble Com Add ins Checkbox

4. Repair MS Office Program

Sometimes the issue is not with your Excel file. Instead, the reason for the error can be a corrupt MS Office application. You can repair the program to fix the Excel file not opening error. Here are the steps:

  • Press the Windows + R keys to launch the ‘Run’ dialog box.

Run Dialog box

  • Enter the text ‘appwiz.cpl’ to launch the program and features window.

appwiz.cpl in the run field

  • Find the MS Office program in the list of applications.

locate Microsoft Office in the list

  • Right-click on it and select Change.

Right Click and Select Change

  • In the new window, select the Quick Repair radio button. Click Repair.

Quick Repair Option

  • Follow the on-screen instructions to repair the Office application. Once the repair process is completed, you can try opening the Excel file to see if the problem is resolved.

5. Disable Hardware Graphics Acceleration

The hardware graphics acceleration assists in the system’s better performance, especially when you use MS Office applications, like MS Excel or Word. Sometimes, this causes the Excel file not opening issue. You can disable this option to try to resolve the issue. Here are the steps:

  • Launch your MS Excel application.
  • Navigate to File > Options > Advanced.
  • Herein, go to the Display option.
  • Uncheck the Disable hardware graphics acceleration checkbox. Click OK.

Uncheck Disable Hardware Acceleration

What If These Solutions Do Not Work?

If you have applied all the methods mentioned above and still cannot open your Excel file, there are chances that your file is corrupted. You can use a specialized Excel repair tool , such as Stellar Repair for Excel to repair the corrupted Excel file. This software has powerful algorithms that can scan and repair even severely corrupt Excel files, without any file size limitation. After repairing the file, it restores all the data, including tables, charts, rules, etc. to a new Excel, with 100% integrity.

To know how the software works, see the video below:

Free Download for Windows

Conclusion

Before you proceed with resolving the Excel file not opening error, try to find out the root cause of this error. If you know the real reason, you can try the method right away. If the reason for the error is corruption in the Excel file, the best option is to repair the file using a professional Excel repair tool, such as Stellar Repair for Excel .

[Fixed] Excel VBA Runtime Error 9: Subscript Out of Range

Summary: The runtime error 9 in Excel usually occurs when you use different objects in a code or the object you are trying to use is not defined. This post will discuss the reasons behind the Excel VBA error “Subscript out of Range” and the solutions to resolve the issue. It will also mention an Excel repair tool that can help fix the error if it occurs due to corruption in worksheet.

Free Download for Windows

Many users have reported encountering the error “Subscript out of range” (runtime error 9) when using VBA code in Excel. The error often occurs when the object you are referring to in a code is not available, deleted, or not defined earlier. Sometimes, it occurs if you have declared an array in code but forgot to specify the DIM or ReDIM statement to define the length of array.

Causes of VBA Runtime Error 9: Subscript Out Of Range

The error ‘Subscript out of range’ in Excel can occur due to several reasons, such as:

  • Object you are trying to use in the VBA code is not defined earlier or is deleted.
  • Entered a wrong declaration syntax of the array.
  • Wrong spelling of the variable name.
  • Referenced a wrong array element.
  • Entered incorrect name of the worksheet you are trying to refer.
  • Worksheet you trying to call in the code is not available.
  • Specified an invalid element.
  • Not specified the number of elements in an array.
  • Workbook in which you trying to use VBA is corrupted.

Methods to Fix Excel VBA Error ‘Subscript out of Range’

Following are some workarounds you can try to fix the runtime error 9 in Excel.

Method 1: Check the Name of Worksheet in the Code

Sometimes, Excel throws the runtime error 9: Subscript out of range if the name of the worksheet is not defined correctly in the code. For example – When trying to copy content from one Excel sheet (emp) to another sheet (emp2) via VBA code, you have mistakenly mentioned wrong name of the worksheet (see the below code).

1
2
3
4
5
6
7
8
Private Sub CommandButton1_Click()
Worksheets("emp").Range("A1:E5").Select
Selection.Copy
Worksheets("emp3").Activate
Worksheets("emp3").Range("A1:E5").Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub

VBA Error Subscript Out Of Range-When Incorrect Name

When you run the above code, the Excel will throw the Subscript out of range error.

So, check the name of the worksheet and correct it. Here are the steps:

  • Go to the Design tab in the Developer section.
  • Double-click on the Command button.
  • Check and modify the worksheet name (e.g. from “emp” to “emp2”).

Modified Code From emp to emp2

  • Now run the code.
  • The content in ‘emp’ worksheet will be copied to ‘emp2’ (see below).

Content Copied From emp to emp2

Method 2: Check the Range of the Array

The VBA error “Subscript out of range” also occurs if you have declared an array in a code but didn’t specify the number of elements. For example – If you have declared an array and forgot to declare the array variable with elements, you will get the error (see below):

Runtime Error 9 When Not Declared Array

To fix this, specify the array variable:

1
2
3
4
5
6
7
Sub FillArray()
Dim curExpense(364) As Currency
Dim intI As Integer
For intI = 0 to 364
curExpense(intI) = 20
Next
End Sub

Method 3: Change Macro Security Settings

The Runtime error 9: Subscript out of range can also occur if there is an issue with the macros or macros are disabled in the Macro Security Settings. In such a case, you can check and change the macro settings. Follow these steps:

  • Open your Microsoft Excel.
  • Navigate to File > Options > Trust Center.
  • Under Trust Center, select Trust Center Settings.
  • Click Macro Settings, select Enable all macros, and then click OK.

Macro Settings In Trust Center

Method 4: Repair your Excel File

The name or format of the Excel file or name of the objects may get changed due to corruption in the file. When the objects are not identified in a VBA code, you may encounter the Subscript out of range error. You can use the Open and Repair utility in Excel to repair the corrupted file. To use this utility, follow these steps:

  • In your MS Excel, click File > Open.
  • Browse to the location where the affected file is stored.
  • In the Open dialog box, select the corrupted workbook.
  • In the Open dropdown, click on Open and Repair.
  • You will see a prompt asking you to repair the file or extract data from it.
  • Click on the Repair option to extract the data as much as possible. If Repair button fails, then click Extract button to recover data without formulas and values.

If the “Open and Repair” utility fails to repair the corrupted/damaged macro-enabled Excel file, then try an advanced Excel repair tool, such as Stellar Repair for Excel. It can easily repair severely corrupted Excel workbook and recover all the items, including macros, cell comments, table, charts, etc. with 100% integrity. The tool is compatible with all versions of Microsoft Excel.

Conclusion

You may experience the “Subscript out of range” error while using VBA in Excel. You can follow the workarounds discussed in this blog to fix the error. If the Excel file is corrupt, then you can use Stellar Repair for Excel to repair the file. It’s a powerful software that can help fix all the issues that occur due to corruption in the Excel file. It helps to recover all the data from the corrupt Excel files (.xls, .xlsx, .xltm, .xltx, and .xlsm) without changing the original formatting. The tool supports Excel 2021, 2019, 2016, and older versions.

[Fixed] The Workbook Cannot Be Opened or Repaired By Microsoft Excel

An MS Excel workbook (.XLS/.XLSX) file may not open due to damage or corruption caused by various reasons, such as:

  • Sudden power failure
  • System crash
  • Virus or malware intrusion
  • Large or oversized Excel file
  • Incompatible add-ins
  • Drive errors
  • Damaged MS Office/Excel program files

As a result, when you try to open or access a corrupt Excel document, the program displays errors, such as “The workbook cannot be opened or repaired by Microsoft Excel because it is corrupt.” This may lead to a data loss situation.

Methods to Fix ‘The Workbook Cannot Be Opened’ Error

When an Excel workbook gets corrupt, MS Excel automatically detects and starts the file recovery mode to open and repair the file. However, when it fails to repair the corruption or recover the Excel file automatically, it displays the error message, “The workbook cannot be opened or repaired by Microsoft Excel because it is corrupt.” In such a situation, you can follow these methods to repair and recover the Excel document manually.

If the manual methods fail to resolve the error, you can use an Excel repair software, such as Stellar Repair for Excel. The software repairs corrupt XLS/XLSX file, recovers all the data, and saves it in a new Excel document with 100% precision, while keeping the cell formatting and properties intact.

NOTE: Before performing the below methods to repair or recover Excel documents, create a backup copy of the original file. This will help you recover data by using an Excel repair tool and avoid permanent data loss.  

1. Repair Excel Workbook Manually

If the automatic repair fails, you may try manual repair to fix the damage or extract the data from the damaged Excel workbook. The steps are as follows:

  • Navigate to File > Open and then go to the location where the spreadsheet is located.
  • In the Open window, select the corrupted workbook that you want to fix and then click on the arrow next to the Open button.
  • From the available options, choose Open and Repair

  • Then click ‘Repair‘ if you want to recover maximum data from the workbook or click ‘Extract data‘ if the repair option fails to fix the issue. It will extract all the values, formulas, tables, etc., from the corrupt workbook.

If both options fail to fix the issue, head to the next method.

2. Remove Faulty or Incompatible Add-ins

Faulty or incompatible add-ins may also cause this error. To find and remove such add-ins, follow these steps:

  • Press **Windows key + R.
    **

  • Type Excel /safe and press ‘Enter‘ or click ‘OK.’ This opens MS Excel in Safe Mode.
  • Go to File > Options and then select ‘Add-ins.

  • Choose ‘Excel Add-ins‘ from Manage: option and then click on the Go button to view all Add-ins.

  • Uncheck the checkboxes of Add-ins and then click ‘OK‘ to disable them.

Now close the Excel program and run it normally. Click ‘File > Open‘ and choose the Excel file you want to access.

3. Repair MS Office Installation

Damaged Excel program files may also lead to such errors. However, you can easily repair MS Office installation to fix the problem. The steps are as follows:

  • Open Control Panel and select ‘Uninstall a program.

  • Search and choose MS Office from the programs list. Then click on the ‘Change’ button.

  • Select ‘Repair’ and follow the wizard to fix the damaged program files.

If this fails to address the issue, you can uninstall and then fresh install MS Office on your system. Alternatively, try accessing the file on another PC.

4. Use Excel Repair Software

The best option is to use an Excel repair software, such as Stellar Repair for Excel , to repair the file, resolve the error, and access the Excel (XLS/XLSX) worksheet. The software can repair an Excel file without any size limitation.

After recovering the Excel file using the software, you can open it in any MS Excel program without encountering the error message.

Conclusion

A corrupt or damaged Excel workbook may lead to errors, such as “The workbook cannot be opened or repaired by Microsoft Excel because it is corrupt,” and cause a data loss situation. The most efficient way to fix such corrupt Excel files is to repair them by using an Excel repair tool, such as Stellar Repair for Excel.

Unlike manual methods that may fail to resolve the issue or lead to further damage, this software extracts the data from the damaged Excel file and saves it in a new Excel workbook. Thus, it is 100% safe to run on an original Excel file, as it does not overwrite or alter the original file.

The software is free to download. You can scan, repair, and preview a corrupt Excel file by using the demo version. Once you are satisfied with the results, activate the software to save the repaired Excel workbook data in a new sheet.

Summary: The blog outlines some quick tips to fix ‘We found a problem with some content’ error in Microsoft Excel 2013/2016. It explains manual procedure to resolve the error and also suggests an automated tool to perform the repair process to retrieve all possible data from a corrupt workbook.

Free Download for Windows

Sometimes, when opening an MS Excel file, you may receive an error message that reads:

“**We found a problem with some content in ‘filename.xlsx’. Do you want us to try to recover as much as we can? If you trust the source of this workbook, click Yes.**“

Microsoft Excel Content Error

Figure 1 – Excel ‘found a problem with some content’ Error Message

What Causes ‘We Found a Problem with Some Content’ Error?

There is no clear answer as to what results in the Excel error – ‘**We found a problem with some content in <filename.xlsx>**’. However, based on some user experiences, it appears that the error occurs due to corruption in an Excel workbook. It may turn corrupt when:

  • You try opening the Excel file saved on a network-shared drive.
  • A string is added in a cell in Excel, instead of a numeric value.
  • Text values in formulas exceed 255 characters.

How to Resolve ‘We Found a Problem with Some Content’ Error?

Follow these tips to fix the Excel error:

IMPORTANT! Before you follow the tips to resolve the Excel error, keep these points in mind: Make sure you have closed all of the opened Excel workbooks. Try restoring Excel file data from the most recent backup copy. If you don’t have a backup copy, make a copy of the corrupt Excel file and perform repair and recovery procedures on that backup copy.

Tip #1: Repair Corrupt Excel File

File Recovery mode is a native Excel recovery utility that automatically opens whenever any inconsistencies are found in the worksheet. If Microsoft doesn’t detect any issue or fails to open the File Recovery mode, you can start it manually to recover the corrupt Excel file. To do so, follow the steps below:

  1. Click on the File menu, and then select Open.
  2. In the Open dialog box, navigate to the folder location where the corrupt Excel file is saved.
  3. Select the corrupt file, and then click on arrow sign available next to Open button to select Open and Repair option.

Open and Repair

Figure 2 – Open and Repair Feature in Excel

  1. Next, click Repair to recover maximum possible data.
  2. If the repair is not able to recover the data from the workbook, select Extract Data to extract all possible formulas and values from the workbook.

If repairing the corrupt Excel file doesn’t work, you can try an Excel file repair tool to fix corruption errors. You can also try to recover data from the corrupt file manually by following the next tips.

Read this: What to do when Open and Repair doesn’t work?

Tip #2: Set Calculation Option to Manual

To make the file accessible, try setting the calculation option in Excel from automatic to manual. As a result, the workbook will not be recalculated and may open in Excel. For this, perform the following:

  1. Click File, and then click New.
  2. Under New, click the Blank workbook option.
  3. When a blank workbook opens, click File > Options.
  4. Under the Formulas category, pick Manual in the Calculation options section, and then click OK.

calculation options

Figure 3 – Select Manual in Calculation options

  1. Now, again click on the File menu and then click Open.
  2. Navigate to the corrupt workbook, and double-click it.

When the workbook opens, check if it contains all the data. If not, proceed to the next tip.

Tip #3: Copy Excel Workbook Contents to a New Workbook

Several users have reported that they were able to fix ‘We found a problem with some content in error message by copying contents from the corrupt workbook to a separate workbook. Detailed steps are as follows:

  1. Open the Excel workbook in ‘read-only’ mode, and copy all its contents.
  2. Create a blank new workbook and paste the copied contents from the corrupt file to the new file.

Use external references to link to the corrupted workbook. By implementing this fix, data contents can be retrieved. However, it is not feasible to recover formulas or calculated values using this solution.

Follow the steps below:

  1. In Excel 2013/2016, click File > Open.
  2. Navigate to the folder where the corrupt file is saved.
  3. Right click the file, select Copy, and then click on Cancel.
  4. Again, click on File and then New.
  5. Under New option, click on Blank workbook.
  6. In the cell A1 of new workbook, type =File Name!A1 (where File Name indicates the name of the damaged workbook being copied in Step 3).
  7. If Update Values dialog box appears, click the corrupt workbook, and choose OK.
  8. If Select Sheet dialog box appears, click the appropriate sheet, and then click OK.
  9. Select cell A1.
  10. Next, click Home, and then click Copy (or, press Ctrl +C).
  11. Starting in cell A1, select area approximately the same size as that of the cell range that contains data in the damaged workbook.
  12. Next, click Home and select Paste (or click Ctrl + V).
  13. Keep the range of cells selected, click Home and then Copy.
  14. Finally, click on Home, click on the arrow associated with Paste and under Paste Values click on Values.

This will remove the link to the corrupt workbook and will retrieve data. But, keep in mind, the recovered data will no longer contain formulas or calculated values.

Alternative Solution – Stellar Repair for Excel

If the above manual methods fail to fix the ‘We found a problem with some content in Excel error’, try using the Stellar Repair for Excel software to resolve this error. The software helps repair and recover corrupt Excel files in just a few clicks. It can be used on a Windows 10/8/7/Vista/XP/NT machine to repair a corrupted workbook and recover every single bit of data from all the versions of the Excel workbook.

Free Download for Windows

Read this: How to repair corrupt Excel file using Stellar Repair for Excel?

Conclusion

In this blog, we discussed some possible reasons behind Microsoft Excel 2013/2016 ‘We found a problem with some content’ error. The error may occur when an Excel file becomes corrupt. You may try repairing the corrupted Excel file manually by using the built-in ‘Open and Repair’ feature. Or, try the manual workarounds to extract data from the corrupt file discussed in this post. If the manual solutions don’t work for you, using Stellar Repair for Excel can come in handy in repairing the corrupt Excel (.xls/.xlsx) file and recovering the complete file data.

[Solved] Excel Spreadsheet Disappears after Opening

Several Excel users have reported about experiencing ‘Excel spreadsheet disappears after opening’ issue. The problem occurs when attempting to open an Excel file by double-clicking on the file icon or name. The Excel file opens blank grey screen.

Excel blank screen

Figure 1 - Excel Blank Screen

User Instances of ‘Excel Open But Can’t See Spreadsheet’ Issue

Instance 1: The user said that “Excel 2016 opens to a blank screen and everything is greyed out. Ribbons at the top of Excel are also not present”.

Instance 2: The user reported that “Attempting to open a spreadsheet, either by double-clicking the file or by opening Excel, it opens but only a blank Excel window is visible. When trying to save that particular file, Excel behaves as though there is no file open at all and all the file saving options, such as save, save as, print, etc. are greyed out.”

Causes Behind ‘Excel Open But Can’t See Spreadsheet’ Issue & the Solutions Thereof

Following are some of the possible reasons behind the ‘Excel open but can’t see spreadsheet’ issue, along with their solutions:

Cause 1: Excel File is Hidden

You may have saved the Excel sheet as a hidden document.

Solution: Unhide Excel File

Verify if your Excel worksheet is hidden by following these steps:

  • In Excel, click the View tab, and then click Unhide.

Note: If the ‘Hide’ tab under the View menu is greyed out, the sheet you’re trying to open is not hidden. In that case, proceed to the next workaround.

unhide excel file

Figure 2 - Unhide Excel File

  • A dialog box will pop-up showing the worksheet name that can be unhidden. For instance, below is an image of Unhide box that lists ‘Daily_Reports’ spreadsheet under Unhide workbook.

unhide excel workbook

Figure 3 – Select and Unhide Excel Workbook

  • Click OK to unhide your Excel sheet.

If this fails to work, there’s a possibility that the spreadsheet window pane may have slided to one side of the visible desktop. To bring back the displayed area, click the ‘Arrange All’ option under the View tab. If the issue persists, try the next solution.

Cause 2: Ignore Dynamic Data Exchange (DDE) Option is Enabled

Another reason behind the ‘Excel opens to a blank screen’ issue could be that the “Ignore other applications that use Dynamic Data Exchange (DDE)” checkbox is checked in Excel options.

Usually, when you double-click an Excel file, a DDE message is sent to Excel instructing it to open that particular file. But, if you have the ‘Ignore DDE’ option selected, the DDE message sent to Excel to open a workbook is ignored. As a result, the Excel workbook opens a blank screen.

Solution: Uncheck the Ignore DDE Option

Make sure that the ‘Ignore DDE’ option is unchecked by performing these steps:

Note: Skip these steps for Excel 2019 and Excel Office 365.

  • In your Excel window, click File > Options.

Excel options

Figure 4 - Select Excel Options

  • From the left-side of the ‘Options’ window, choose Advanced.

Excel Options Window

Figure 5 - Excel Options Window

  • In ‘Advanced’ window, locate the General section, and then uncheck the “Ignore other applications that use Dynamic Data Exchange (DDE)” checkbox.

uncheck ignore DDE

Figure 6 - Uncheck Ignore Other Applications that use DDE

  • Click OK to apply the changes.

If these steps don’t work, proceed to the next workaround.

Cause 3: Issue within Office Program

Sometimes, problem within your Microsoft Office program might cause Excel to behave oddly and may result in an Excel spreadsheet disappeared issue.

Solution: Repair Office Program

Try repairing your Office program by executing the steps listed below, based on your Windows OS:

For Windows 10:

  • Type Settings in the Windows search box.
  • Click Settings.
  • In ‘Windows Settings’ screen, select Apps.

Windows settings screen

Figure 7 - Windows Settings Screen

  • In ‘Apps & features’ screen, scroll down to your Microsoft Office program and tap on it, and then click the Modify

modify MS Office program

Figure 8 - Modify MS Office Program

  • In ‘How would you like to repair your Office programs’ dialog box, select the Online Repairradio button, and then click the Repair

repair MS Office program

Figure 9 - Repair MS Office Program

For Windows 8:

  • Open Control Panel and click the Uninstall a program option under Programs.
  • Select Microsoft Office 365 and then click Change.
  • In the window that opens, select Online Repair and then hit the Repair

You may be asked to restart your system after completion of the repair process.

For Windows 7:

  • In ‘Control Panel’ window, double-click Programs and Features.
  • Under Uninstall or change a program section, select the Office program, and then select Change.
  • In the dialog box that appears, choose Online Repair and then choose Repair.

If repairing your Office installation fails to resolve the issue, continue to solution 4.

Cause 4: Problematic Excel and COM Add-ins

Sometimes, Excel and COM add-ins may cause Excel file open a blank grey screen problem.

Solution: Disable the Add-ins

Disabling the Excel and COM add-ins one at a time may help resolve the problem. The steps are as follows:

  • Click the File menu in your Excel file and select
  • From ‘Excel Options’ left-side panel, click Add-Ins, and then choose COM Add-ins from the ‘Manage’ drop-down. Click the Go

COM Add-ins

Figure 10 - Select COM Add-ins

  • Uncheck one of the add-ins checkbox from the COM Add-ins window, then select OK.

disable COM Add-ins

Figure 11 - Uncheck and Disable COM Add-ins

  • Restart your Excel program.

If the issue persists, repeat the above steps (1 till 4), except that you need to choose a different add-in in step 3.

If you’re still experiencing the same problem after unchecking all the COM add-ins, repeat all the above steps, except choose ‘Excel Add-ins’ in step 2.

If Excel can load the file, then the add-in that you disabled last leads to the problem. If turning off add-ins does not work, try the next solution.

Cause 5: Problem with Excel File Associations

The Excel file opening a blank screen problem may occur if the file associations are not performing correctly.

Solution: Reset Excel File Associations

Try resetting the file associations in Excel to their default settings. For this, follow the below steps based on your OS.

For Windows 10 and Windows 8.1:

  • Select the file that is opening incorrectly and copy it to the desktop.
  • Right-click the file and click Properties.
  • In the File’s ‘Properties’ window, check your file type next to Type of Filefrom the General tab. For instance, (.docx), (.csv), or (.pdf).
  • Next, check to which app your file is associated with from the Opens withoption

If the file type is different than .xlsx, open the file in a different application by following these steps:

  • Click the Change button next to the ‘Opens with’ option.
  • Click More apps.
  • From the list of applications, select the desired app and then check the Always use this app Click OK.

For Windows 8:

  • Open Control Panel, click Default Programs, and then select Set your default programs.
  • Choose Excel and then tap the Choose default for this program
  • In ‘Set Program Associations’ window, choose Select All and then click Save.

For Windows 7:

  • In Control Panel, choose Default Programs.
  • Click the Associate a file type or protocol with a specific program
  • Choose Microsoft Excel Worksheet and click on change program.
  • Choose Microsoft Excel under Recommended Programs.
  • If you’re unable to find Excel, browse the Excel installation folder.
  • Select exe and then choose Excel.

What Next? Use Stellar Repair for Excel to Recover Your File

If the above solutions don’t help recover your Excel file, use an Excel file repair tool, such as Stellar Repair for Excel to recover it. The software can restore the Excel spreadsheet and its components, including tables, pivot tables, charts, formulas, etc. while preserving the spreadsheet properties and formatting.

Free download Stellar Repair for Excel

Check out the video to recover Excel file by using Stellar Repair for Excel software.

Conclusion

This article described the possible causes behind the ‘Excel open but can’t see spreadsheet’ issue, along with their solutions. The manual solutions to resolve the issue require time and efforts. But, if you need to access your Excel file without any delay, use Stellar Repair for Excel software to recover your .xlsx/.xls file in just a few clicks.

How to Fix Excel has Encountered a Problem

While working on MS Excel, you may encounter various errors that can hamper your work and productivity. One of the errors that you may receive is ‘Microsoft Excel has encountered a problem and needs to close’.Due to this error, your Excel program may stop and asks you to recover the data from Excel file.

excel error

What are the Reasons for ‘MS Excel has Encountered a Problem’ Error?

Following are some primary causes that may result in the ‘Microsoft Excel has encountered a problem and needs to close’ error:

  • Corrupt Excel File: If you try to open a corrupt or damaged Excel file, the file may not open and displays this error message.
  • File not Saved Properly: If Excel files aren’t saved correctly, this error may occur when you open the file.
  • Incompatible File Version: If the MS Excel application version does not support the Excel file version, the file may not open and throws the error.
  • Issues with MS Office/MS Excel Installation: This error can sometimes be caused due to damaged MS Office/MS Excel installation.

How to Fix ‘MS Excel has Encountered a Problem’ Error?

You can resolve the error by using the following methods:

1. Try to Open Excel in Safe Mode

Open the Excel application in safe mode and then try to open the Excel file. This will help you find out if the problem is caused by some incompatible add-ins. The steps are as follows:

  • Hold Windows + R keys together to launch the Run dialog box.
  • Type Excel /safe in the search box and hit Enter.
  • If your Excel application opens in safe mode, it means that the issue is caused due to incompatible or faulty add-ins. In such a case, you need to disable the add-ins:
  • Go to the File menu and click the Options menu. Further, choose the Add-ins option.

excel add ins

  • Now, choose the Go button at the bottom of the Excel Options window.
  • A list of available add-ins appears.
  • Now, uncheck the boxes against the add-ins.

2. Disable Macros Using the Trust Center Settings

Sometimes, the Macros prevent Excel from managing the files. You can disable the Macros to resolve the issue. Follow these steps:

  • Launch your MS Excel application.
  • Now, go to File > Options > Trust Center.
  • Further, click the Trust Center Settings.

trust center

  • Now, navigate to the Macro Settings option.

trust center macro settings

  • Herein, select the ‘Disable all macros with notification’ radio button. Then, click OK.

3. Repair MS Office Application

Sometimes, problems with your MS Office application may cause the Excel has encountered a problem error. In such a case, you need to repair your MS Office application. Here are the steps to do so:

  • Launch Control Panel > Uninstall a Program.
  • Find your MS Office application and click the Change option.
  • A new window will appear. Herein, select the Repair option.

ms office repair

  • Now, follow the MS Office installation wizard to finish the repair process.

What to do if the above methods don’t work?

If you have tried the solutions mentioned above and are still not able to resolve the ‘Excel has encountered a problem and need to close’ error, it indicates that the Excel file is corrupt. You can use a professional Excel repair software, such as Stellar Repair for Excel , to repair the corrupt file. The software repairs the file and retrieves all the data, including the tables, charts, formulas, etc. from the damaged workbook. It is compatible with all the MS Excel versions.

free download

To know how Stellar Repair for Excel works, see the following video:

To Wrap Up

The ‘Excel has encountered a problem and needs to close’ error may occur due to different reasons. You can fix this error by following the methods mentioned in this post. If the error has occurred due to corruption in the Excel file, you can use a third-party Excel repair tool, like Stellar Repair for Excel. The software can repair damaged or corrupt Excel file of any size and retrieve all the data.

How to Resolve ‘Excel found unreadable content in filename.xlsx’ Error in MS Excel?

When opening an Excel spreadsheet in MS Office 2010/2007, you may get the following error message:

“Excel found unreadable content in ‘[filename].xlsx’. Do you want to recover the contents of this workbook? If you trust the source of this workbook, click Yes.”

Excel Found Unreadable Content Error Message

On clicking ‘Yes’, you may face any of these scenarios:

Note: If you choose to click ‘No’, then open your MS Excel application and click file > Open. When the Open dialog box opens, browse and select the file showing the ‘Excel found unreadable content’ error and then choose ‘Open and Repair’ option. If this didn’t help, try using a third-party Excel repair tool to save time troubleshooting the issue and restoring the file with all its data intact.

Scenario 1: The following message may pop-up.

“Excel was able to open the file by repairing or removing the unreadable content. Excel recovered your formulas and cell values, but

some data may have been lost

. Click to view log file listing repairs errorxxx.xml.”

Excel Was Able To Open the File By Repairing Message

The message clearly states that your Excel file might open, but images may be lost and other such inconsistencies can crop up.

Scenario 2: The error is followed by another error message, like “The file is corrupt and cannot be opened“.

Watch our short video for a quick overview of the solutions to fix “Excel found unreadable content in filename.xlsx”

What Causes ‘Excel Unreadable Content’ Error?

You may encounter the ‘Excel file unreadable content’ error due to corruption of complete Excel file or corruption in certain areas (like Pivot Table, Formulas, Styles, or other objects) in the file. According to Microsoft, you may find it difficult to determine the root cause behind Excel file corruption. Corruption could occur in different scenarios, like power surge, a network glitch, copying and pasting corrupted data from another file, etc.

Also ReadHow to recover data from corrupt or damaged Excel file 2010 & 2007?

Workarounds to Resolve the ‘Excel found unreadable content in filename.xls’ Error

There is no permanent solution to fix the ‘Excel found unreadable content’ error. But, following are some workarounds you can try to resolve the error.

Note: Before you try any of these workarounds, run Excel with administrator privileges and try opening the Excel file that is throwing the ‘unreadable content’ error. If this doesn’t fix the error, proceed with the workarounds below.

Workaround 1 – Try Opening the File in Excel 2003

Sometimes a problem in the current Excel version might prevent a file from opening. To resolve this error, try opening the problematic file in Excel 2003. If the file opens, save the data in a web page file format (.html) and then try opening the .html file in MS Excel 2010/2007. The detailed step-wise instructions are as follows:

  • Open the .xls file in Excel 2003.
  • When the file opens, click on File > Save.
  • In the ‘Save As’ dialog box, choose Web Page (.html) as the ‘Save as type’ and then click ‘Save.’ Doing so will save everything from your .xls file, opened with 2003, in .html file format.
  • Open the .html file in Excel 2010/2007. And then, save the file with .xlsx extension with a new name to avoid overwriting the original file.

Now, open the Excel 2010/2007 file and check if the error is fixed. If not, use the next workaround.

Workaround 2 – Make the Excel File ‘Read-only’

Try to open your ‘.xlsx’ file by making it ‘read-only’. Follow these steps:

  • In Excel, click ‘File’ from the main menu.
  • Select ‘Save’ for a new document or ‘Save As’ for a previously saved document in the screen that appears.

Excel File Saving Options

  • From the ‘Save As’ dialog box, click Tools > General Options.

Open General Options In Excel

  • Click on the ‘Read-only recommended’ checkbox to make the document read-only and then click ‘OK’.

Select Read Only Recommended Option

Now open a new ‘.xlsx’ file and copy everything from the corrupt Excel file to this new file. Finally, save this file and try to open it again.

Workaround 3 – Move Excel File to a New Folder

Some users have reported that they could open their Excel file, following the ‘Excel unreadable content’ error, by simply moving the file to a different folder and saving it under a new name. You can also move the affected file to a new folder and try opening it. If this didn’t help resolve the error, follow the next workaround.

Workaround 4 – Install Visual Basic Component

At times, it is seen that installing the ‘Visual Basic’ component of MS Office 2010 resolves the ‘Excel found unreadable content 2010’ error. To do so, follow these steps:

  • Navigate to Control Panel > Programs and select Microsoft Office 2010.
  • Click ‘Change’ and then select ‘Add or Remove Programs’.
  • Next, click the ‘plus’ sign provided next to Office Shared Features.
  • Click ‘Visual Basic for Applications’. After that, right-click and choose ‘Run from My Computer’ and hit the ‘Continue’ button.
  • Reboot your system when this process finishes.

Now check if the issue has been resolved or not.

What Next?

If none of the workarounds mentioned above works for you, use a professional Excel repair software, such as Stellar Repair for Excel. The software repairs corrupt MS Excel sheets without modifying their original content and formatting. In addition, it can repair single or multiple Excel (XLS/XLSX) files in a few simple steps.

free-download

Steps to Repair Corrupt Excel File using Stellar Repair for Excel Software

  • Install and run Stellar Repair for Excel software.

  • From the software main interface window, click ‘Browse’ to select the corrupt file. If you are not aware of the corrupt Excel file location, click on the ‘Search’ button.

Select Corrupt excel File

  • Click on the ‘Repair’ button to scan and repair the selected file.

Scan Corrupt Excel File

  • A preview window will open with recoverable Excel file data. Once satisfied with the preview result, click on the ‘Save File’ button on the ‘File’ menu to start the repair process.

Preview Recoverable Excel File Data

  • Select the destination to save the file.

Save Repaired Excel File

  • Click ‘OK’ when the ‘Repaired file saved successfully’ message appears.

Saving Complete Message

 The repaired Excel file will get saved at the selected location.


  • Title: Top 5 Ways to Fix Excel 2010 File Not Opening Error | Stellar
  • Author: Ian
  • Created at : 2024-03-11 10:28:11
  • Updated at : 2024-03-14 16:18:44
  • Link: https://techidaily.com/top-5-ways-to-fix-excel-2010-file-not-opening-error-stellar-by-stellar-guide/
  • License: This work is licensed under CC BY-NC-SA 4.0.
On this page
Top 5 Ways to Fix Excel 2010 File Not Opening Error | Stellar