excel - Vlookup with multiple conditions -
I've checked the previous post how to use vlookup to use several conditions, though when I put it on my workbook Let me apply "# N / A" . I am grateful for any reaction I am doing wrong. Problem (simple example): I return the value of "good" The formula is expected - however, I am getting "# N / A" right now. Any help appreciated The combination is a string. Value in D1 is numeric "12345" & lt; & Gt; 12345. This is your problem. If you are working only with numerical values, which are being inserted, then this will fix the converged string by converting it into a numeric value, which should return a match. If you type string and / or numerical type Columns in B & C are working with the mixture, it may require some extra tuning. A1 =
Vlookup (B1 & C1, D: E, 2, False)
b1 = 123
C1 = 45
e1 = "good"
= VLOOKUP ((B1 and C1) * 1, D: E, 2, False)
Comments
Post a Comment