October 6, 2016 at 7:46 am
Hi
I have some excel input files but in those files column names text(Header fields) are varying one file to another.so, How can I read those excel files using column numbers instead of column names.
can anyone please suggest me how to read excel file without using column names.
Thank you
Janu:-)
October 6, 2016 at 8:06 am
Sure. Skip the header rows by setting 'Data Access Mode' to 'Table name or view name variable'.
Set the variable's value to a range which excludes header rows, eg:
sheet1$A2:D
which is columns A to D, from row 2 onwards, on sheet 'sheet1' (Excel adds the '$' automatically).
October 6, 2016 at 8:07 am
And good luck handling Excel's semi-random data-type guesswork 🙂
October 7, 2016 at 2:19 am
Thanks for your response.
select * from
[Sheet1$A2:AZ]
it's working correctly but this query reads the data with second row data as column names.
I need second row data also without header.
for example my input excel files are
file1:
id name addr
1 ABC hyd
2 XYZ vzg
file2:
no fname place
3 CDE NLR
4 FGH PKL
How to read the above excel files with same query?
can you please suggest me.
Thanks in advance
Janu:-)
October 7, 2016 at 3:43 am
Your Connection Manager must be set up to treat the first row as a header. Go to your Connection Manager properties for the Excel sheet, and change FirstRowHasColumnName to FALSE.
Thom~
Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
Larnu.uk
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply