OK, so, what I need to do is a sort of look up where on sheet 1 in cell B1, i enter a formula that looks for the value in sheet1 cell A1 across all cells in sheet 2. When it finds the required value (which will be a word) somewhere in sheet 2 (it will be a unique word appearing only once in sheet 2), then return the cell row and column number of the cell it found the value in.
I know how to vlookup in the normal way and also how to return a cell row/column by using =CONCATENATE("(",COLUMN(), ", ",ROW(),")") but i can't manage to marry the two together
Sheet 1:
look value on Sheet1 A1 across all of Sheet2 and write cell row and column number in cell B1
look value on Sheet1 A2 across all of Sheet2 and write cell row and column number in cell B2
.........
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A
[/TD]
[TD]B
[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Apple
[/TD]
[TD](1, 2)
[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Dog
[/TD]
[TD](2, 3)
[/TD]
[/TR]
</tbody>[/TABLE]
Sheet 2
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A (col 1)
[/TD]
[TD]B (Col2)
[/TD]
[TD]C (col3)
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]<blank></blank>
[/TD]
[TD]Apple
[/TD]
[TD]<blank></blank>
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]<blank></blank>
[/TD]
[TD]<blank></blank>
[/TD]
[TD]Dog
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]<blank></blank>
[/TD]
[TD]<blank></blank>
[/TD]
[TD]<blank></blank>
[/TD]
[/TR]
</tbody>[/TABLE]
Any Idea how this can be acheived ??????
Many thanks in advance
I know how to vlookup in the normal way and also how to return a cell row/column by using =CONCATENATE("(",COLUMN(), ", ",ROW(),")") but i can't manage to marry the two together
Sheet 1:
look value on Sheet1 A1 across all of Sheet2 and write cell row and column number in cell B1
look value on Sheet1 A2 across all of Sheet2 and write cell row and column number in cell B2
.........
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A
[/TD]
[TD]B
[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Apple
[/TD]
[TD](1, 2)
[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Dog
[/TD]
[TD](2, 3)
[/TD]
[/TR]
</tbody>[/TABLE]
Sheet 2
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A (col 1)
[/TD]
[TD]B (Col2)
[/TD]
[TD]C (col3)
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]<blank></blank>
[/TD]
[TD]Apple
[/TD]
[TD]<blank></blank>
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]<blank></blank>
[/TD]
[TD]<blank></blank>
[/TD]
[TD]Dog
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]<blank></blank>
[/TD]
[TD]<blank></blank>
[/TD]
[TD]<blank></blank>
[/TD]
[/TR]
</tbody>[/TABLE]
Any Idea how this can be acheived ??????
Many thanks in advance
Last edited: