tarek
tarek

Reputation: 21

How to convert a xls file to xml?

I have an excel file that has multiple work sheets inside it, and each sheet has links to other sheets, I'm currently having trouble converting this file into XML format. Each worksheet includes information about a hotel including contacts, rates, rooms, policies, etc. please note I use linux, so I can't run vb.net codes to convert

Upvotes: 2

Views: 3130

Answers (1)

TonySalimi
TonySalimi

Reputation: 8427

Save the file as .xlsx, distinguished by Office 2007 and later. .xlsx files are compressed xml files. See more about Open XML in MS website. You also may use Mono to develop .Net project under Linux.

Upvotes: 5

Related Questions