How can I view the XML form of an Excel *.xlsx
file?
Asked
Active
Viewed 6.7k times
73

TylerH
- 20,799
- 66
- 75
- 101

Allan Chua
- 9,305
- 9
- 41
- 61
3 Answers
26
The following procedure worked for me:
- Change the extension of the file from .xlsx to .zip
- 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