Hello All,
I receive approximately 150 sets of data where I need to pull 4 specific columns, three of which are always the first three columns and a fourth which varies for each dataset, i.e. it may be the 4th, 5th, or 10th column, with no easy way to identify which column that will be. The only way to identify which column is the fourth is that it will always be titled "Label", but the title occasionally appears in the first, second, third, fourth, or fifth row (i.e. if I dynamically rename or skip n number of rows, the "Label" indicator may or may not end up in the first row.
Currently, I am using Dynamic Select to select the first columns
([FieldNumber] = 1)
OR
([FieldNumber] = 2)
OR
([FieldNumber] = 3)
I would like to add something like the following to identify the fourth column by scanning the contents of each field, and selecting it if any of the field values = "Label" along the lines of
OR
Contains([ANY AND ALL FIELDS],"Label")
but don't know how to identify the underlined portion, which is obviously not a field name.
Any ideas?
Thanks!