Home > Backend Development > C++ > How to Fix the 'External table is not in the expected format' Error When Reading xlsx Files in Excel?

How to Fix the 'External table is not in the expected format' Error When Reading xlsx Files in Excel?

Susan Sarandon
Release: 2025-01-26 17:21:16
Original
634 people have browsed it

How to Fix the

Solve the error of Excel's "external form format" error

Question:

When using the connection string (including Microsoft.Jet.OLEDB.4.0 and Extended Properties = Excel 8.0), read the Excel (XLSX) file, if the file is not opened in Excel, the "external format does not match" may appear. mistake.

Solution:

In order to directly access the XLSX file without having to open it in Excel, please modify the connection string as follows:

"Microsoft.jet.OLEDB.4.0" was replaced with "microsoft.ace.OLEDB.12.0". This updated driver is compatible with Excel 2007 files.

Update "Extended Properties = Excel 8.0" to "Extended Properties = Excel 12.0". This adjustment is consistent with the Excel version used.
  1. Specter string:

Using this modified connection strings, you should be able to read the excel file without opening the file in the Excel in advance.

The above is the detailed content of How to Fix the 'External table is not in the expected format' Error When Reading xlsx Files in Excel?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template