excel.load
Description
Load an Excel workbook.

Parameters
filename string

Return value
bookID number

Example
local xl = excel.load("c:\\test.xls")
if xl < 1 then
    print("Error loading workbook")
else

    -- close the workbook
    excel.close(xl)
end if

Comments
Filename path is absolute.

See also
excel.duplicate
excel.save
excel.close

Back
Generated on the 26 June 2024 at 22:01:28 (UK Time)