Excel experts, what am I missing here? Why is the formula evaluating to #N/A in cell C1? All cells are formatted as text
Actual value in A1: 1~3104641~A~ ~0000252415~BLUE SYCAM00001
Actual value in B1: 1~3104641~A~ ~0000252415~BLUE SYCAM00001
Excel experts, what am I missing here? Why is the formula evaluating to #N/A in cell C1? All cells are formatted as text
Actual value in A1: 1~3104641~A~ ~0000252415~BLUE SYCAM00001
Actual value in B1: 1~3104641~A~ ~0000252415~BLUE SYCAM00001
Vlookup doesn't like the single tilde(~). You need to double it with this formula:
=VLOOKUP(SUBSTITUTE(B1,"~","~~"),A1,1,0)