Reputation: 13
I need to know how can i find a value of A1 in C:C and copy the value of found cell into B1.
For example:
Upvotes: 0
Views: 84
Reputation: 2551
Set this in B1:
=INDEX(C:C,MATCH(A2,MID(C:C,4,LEN(A2)),0))
Enter this formula with Ctrl
+Shift
+Enter
, since this is an array formula.
and drag down.
Upvotes: 1
Reputation: 5165
Try setting B1 to:
=INDEX(C:C, MATCH("File=" & A1, C:C, 0))
You could also use the VLOOKUP()
function.
Upvotes: 0