Hi there,
I need a formula that will find duplicate values from Column A and in Column C, then replace the cell value of Column D with the cell values of Column B. For example:
Col A Col B Col C Col D
AAA 0 BBB 15
BBB 5 LLLL 5
CCC 8 FFFF 0
DDD 25 AAA 3
EEE 9 RRR 1
FFF 18 VVV 5
GGG 6 JJJ 9
I was looking at using VLOOKUP and REPLACE or SUBSTITUE, but then I read some articles that MATCH or INDEX was better than VLOOKUP. This is what I come up so far:
=((VLOOKUP(A2,$C$2:$C$200,3,FALSE)
as you can see I get stuck at the replacing value cell. I greatly appreciate any help or advice!
I need a formula that will find duplicate values from Column A and in Column C, then replace the cell value of Column D with the cell values of Column B. For example:
Col A Col B Col C Col D
AAA 0 BBB 15
BBB 5 LLLL 5
CCC 8 FFFF 0
DDD 25 AAA 3
EEE 9 RRR 1
FFF 18 VVV 5
GGG 6 JJJ 9
I was looking at using VLOOKUP and REPLACE or SUBSTITUE, but then I read some articles that MATCH or INDEX was better than VLOOKUP. This is what I come up so far:
=((VLOOKUP(A2,$C$2:$C$200,3,FALSE)
as you can see I get stuck at the replacing value cell. I greatly appreciate any help or advice!