Hi,
Is there any "efficient" way to get the # of (rows,cols) of an excel file, besides looping thru it looking for a null, using xl( ) - Excel file I/O class ?
thks
Is there any "efficient" way to get the # of (rows,cols) of an excel file, besides looping thru it looking for a null, using xl( ) - Excel file I/O class ?
Code:
mata
b=xl()
b.load_book("test.xlsx")
b.set_sheet("sheet1")
b.get_string((1,1),(rows,cols))
...

Comment