Forum Discussion
Anonymous
Aug 01, 2019EXCEL: "If cell contains specific letter using LEFT formula then return specific text"
Problem: 25k rows per column and I'm trying to extract different types of product references. Using =Left(cell;1) I will have 3 different outputs. "E", "F" and "U". Now what I need to do is ren...
nabilmourad
Aug 02, 2019MVP
Deleted
Hi
I created a sample Excel file for you
If your values to evaluate are in Column A then use this function in Column B
=IFERROR(VLOOKUP(LEFT(A2,1),$H$2:$I$4,2,0),"")
Range H2 : I4 is the Table array of the VLOOKUP function
Then Hit F2 (edit Mode)
Select the Table array and Hit F9 >> Enter
You now hardcoded the Table array INSIDE the function
Delete the Table array
Copy Your Function down
=IFERROR(VLOOKUP(LEFT(A7,1),{"E","Txt for E";"F","Txt for F";"U","Txt for U"},2,0),"")
Hope that helps
Nabil Mourad