I’m trying to read a first column of an excel file (from sheet2 column d2). This is my try:
using XLSX, , DataFrames
xf = XLSX.readxlsx("C:/Data/sample.xlsx")
sh = xf["sheet2"]
sh["d2"] ; sh[3]; # or any other similar things are not working
Does anyone know how to read a whole column form specific sheet in an excel file?