I have an excel file (.xlsx) that I want to read with XLSX.jl pkg. If I use xf = XLSX.readxlsx("filename.xlsx") I get the following.
XLSXFile("filename.xlsx") containing 1 Worksheet
sheetname size range
-------------------------------------------------
Sheet1 size unknown
If I instead use XLSX.readdata("filename.xlsx", "Sheet1", "A1:J57") I get a 57x10 matrix with all the data in the excel file.
I have tried XLSX.readdata(), XLSX.openxlsx(), XLSX.readtable(), XLSX.readxlsx()
But the only that works is readdataand if I specify "A1:J57 Is there a way so I don't need to specify column and rows? I have no control over the format of the sheet in the excelfile.