Hi everyone,
I’m trying to import an excel table into a dataframe using:
df_data = DataFrame(XLSX.readtable(file_path, "styles", columns="A:H", infer_eltypes=true, first_row=3))
But I’m getting
MethodError: no method matching readtable(::String, ::String; columns::String, infer_eltypes::Bool, first_row::Int64)
Seems like I’m missing something basic, but can’t figure out what. Any suggestions?