[GIS] dbf to excel format

arcgis-desktopdbfexcel

I have a .dbf file from arcgis 10.1 and it contains 370 columns and 582 rows. I want to open it in excel but it can only open 256 columns no more than that.

There's a way that I can break a file and then merge them but that's quite time consuming.

I've got to know that by using VBA we can read dbf files the way is it. Anybody please suggest me what to do to open it in one excel sheet through VBA or any other way.

Best Answer

If you're able to use python, simpledbf (https://pypi.python.org/pypi/simpledbf/0.2.4) can read the dbf file and export to a csv:

dbf = Dbf5('example.dbf')

dbf.to_csv('example.csv')
Related Question