73

How can I view the XML form of an Excel *.xlsx file?

TylerH
  • 20,799
  • 66
  • 75
  • 101
Allan Chua
  • 9,305
  • 9
  • 41
  • 61

3 Answers3

142

XLSX files are just ZIP files, so unzip them using your favourite ZIP tool.

TylerH
  • 20,799
  • 66
  • 75
  • 101
RB.
  • 36,301
  • 12
  • 91
  • 131
26

The following procedure worked for me:

  1. Change the extension of the file from .xlsx to .zip
  2. Unzip with winzip
Kevin Bowersox
  • 93,289
  • 19
  • 159
  • 189
4

You can do this easily using the tar command:

tar -xf pathtofile\excel_file.xlsx

This works on Windows 10 and Linux

drake14w
  • 157
  • 9