male female children teens 11 cc 78 ee 22 xx 33 ff 45 uu 56 ooIf you try to read the data through ISAM driver against the whole sheet, you will get the null values for first row. If you want to avoid this, create named ranges: one containing only the header information and another containing the data information. For example:
named range 'myRange1' : male female children teens named range 'myRange2' : 11 cc 78 ee 22 xx 33 ff 45 uu 56 ooNow you can connect to Excel via TextPipe and request information only from the particular named range. However, in one range, a particular column can contain only one type of data.
excel File : test.xls with the following entries:
male female children teens
11 cc 78 ee
22 xx 33 ff
45 uu 56 oo
named range : myRange1
male female children teens
named range : myRange2
11 cc 78 ee
22 xx 33 ff
45 uu 56 oo The following results are as expected:
11 cc 78 ee 22 xx 33 ff 45 uu 56 oo