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):

A1 = Vlookup (B1 & C1, D: E, 2, False)

  • b1 = 123
  • C1 = 45
  • < Code> D1 = 12345
  • e1 = "good"

    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.

    = VLOOKUP ((B1 and C1) * 1, D: E, 2, False)

    If you type string and / or numerical type Columns in B & C are working with the mixture, it may require some extra tuning.

Comments

Popular posts from this blog

excel vba - How to delete Solver(SOLVER.XLAM) code -

github - Teamcity & Git - PR merge builds - anyway to get HEAD commit hash? -

ios - Replace text in UITextView run slowly -