Forum Discussion
Lawrence_Lam_320
Aug 23, 2023Copper Contributor
Vlookup issue
Hi Expertises, Need you help again. I have a problem in vlookup as below 736 1234 736123 1234 88Q 2345 88Q567 #VALUE! I need to extract the first left 3 characters from the d...
- Aug 24, 2023
=VLOOKUP(IFERROR(VALUE(LEFT(C1,3)),TEXT(LEFT(C1,3),0)),$A$1:$B$4,2,FALSE)This formula works for the sample data in my worksheet.
OliverScheurich
Aug 24, 2023Gold Contributor
=VLOOKUP(IFERROR(VALUE(LEFT(C1,3)),TEXT(LEFT(C1,3),0)),$A$1:$B$4,2,FALSE)This formula works for the sample data in my worksheet.
- Lawrence_Lam_320Aug 24, 2023Copper ContributorThank you so much.