I have first 15 rows of a excel file as \"Header data\". and after 235 rows, \"Footer data\". I need to read data in between these header and footer da
So to summarize. Header location is 15 from the top and Footer location is Y from the bottom. Here's how you import the correct values:
import pandas as pd df=pd.read_excel("File.xls",header=15,skipfooter=_Y_)
Do ensure that your columnar data isn't being excluded!