=B<value of A>

F

floortje

Hi, Is it possible to create a function that uses the value of a field
as a pointer for another row

this is what I want
no-A-B
1-3-blaat
2- -booh
3-1-test

should become
no-A-B-C
1-3-blaat-test (since A=3 and B3 is test I need the value of B3)
2- -booh- (empty since A2=empty)
3-1-test-blaat (since A=1 and A1=blaat I need the value of B1)

Floortje
 
M

mangesh_yadav

In C1, enter the following:
=IF(ISERR(INDIRECT("B"&A1)),"",INDIRECT("B"&A1))

and copy down.

Mangesh
 
Top