Excel Reader

An asset by Apprentice
The page banner background of a mountain and forest
Excel Reader hero image

Quick Information

0 ratings
Excel Reader icon image
Apprentice
Excel Reader

Reading excel files. If you find any bugs, please report in issues.

Supported Engine Version
4.0
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
1 year ago
Git URL
Issue URL

README Plugin Logo

Godot Excel Reader

README Godot Engine 4.0.2 README MIT license

Reading excel files.

For now, only xlsx files can be read.


Example

var excel = ExcelFile.open_file("xlsx file path")
var workbook = excel.get_workbook()

var sheet = workbook.get_sheet(0)
# Or use the following line, where two lines of code are equivalent
#var sheet = workbook.get_sheet("sheet1.xml") as ExcelSheet
var table_data = sheet.get_table_data()
print(JSON.stringify(table_data, "\t"))

# Output by row and column
var table_data = sheet.get_table_data()
for row in table_data:
    var column_data = table_data[row]
    for column in column_data:
        print(column_data[column])

Contribute

Any contributions is welcome! If you find any bugs, please report in issues.

Reading excel files. If you find any bugs, please report in issues.

Reviews

0 ratings

Your Rating

Headline must be at least 3 characters but not more than 50
Review must be at least 5 characters but not more than 500
Please sign in to add a review

Quick Information

0 ratings
Excel Reader icon image
Apprentice
Excel Reader

Reading excel files. If you find any bugs, please report in issues.

Supported Engine Version
4.0
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
1 year ago
Git URL
Issue URL

Open Source

Released under the AGPLv3 license

Plug and Play

Browse assets directly from Godot

Community Driven

Created by developers for developers