简体   繁体   中英

How to print excel data with Lua

I'm trying to print some excel datas, but I just receive "table" in output.

Below is my code, that connect with plan (in example "Plantest").

    require('luacom')
    excel = luacom.CreateObject("Excel.Application")
    excel.Visible = true

    fpath = "C:\\Documents\\Planteste.xlsx"
    wb = excel.Workbooks:Open(fpath)
    ws = wb.Worksheets("Plan1")

To print I try:

Value = excel.Cells(1, 1)

But in output I receive table.

How can I print a specific row?

I found the solution:

print(ws.Cells(1, 1).Value(""))

Show the content from "A1" cell.

:)

Thank

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM