I wanted to know how to match a string between the column. For ex:
A. B. C. D. E. F.
1. 2. 3. 4. 5. 6
In above example let Alphabet be column name and digits are considered as values in the column.
So, i want to match Column A , Value 1 and Column E , Value 5. Values in Column A and E is different.
I'm using something like (A + '.*' + E) To get something like - 1. 5.
Any help is really appreciated.
Thanks, :)