Skip to main content

Hello, I am trying to read an excel file with FeatureReader but my excel file has an extra row before the true header row.

 

Row 1: Report Title

Row 2: Header Row

Row 3-N: Data

 

Is there a way to skip over the first row when reading in the file with FeatureReader?

 

Thank you

You can specify the cell range in the reader parameters, e.g. with headers (field names) on row 2 and data starting on row 3:

image


Reply