suppose the data are as follows
a
a
- a 1S.no
- b 2
- c 3
- a 4
- a 5
- e 6
- a 7
- a 1S.no
- b 2
- c 3
- d 4
- a 5
- a 6
- when i vlookup(second, first table,2,false)... i.e i want to check from which s.no, has the data been extracted.... when it looks for 'a' in table a, it tells that all are from s.no1.... for a in sno. 5 and s.no 6 (in table b also), it tells it is from sno1...i.e it compares all the 'a's in b with the first 'a' only in table a
- what i want is
- when looking a in s.no5 intable b it should tell it is from s.no 4(table a)
- and when looking s.no.6(table ),,,, it should tell it is from s.no5
- in other words... it should match first a and first a... second a and second a and third a and third a and not...... first second and third a (table b) with the first a in table a only.
- how to do this?