I need to modify the below if statement.
=IFERROR(IF($C2="X", VLOOKUP($A2,Manuals, 2, 0), IF($C2="", VLOOKUP($A2, Kickout, 22, 0))), VLOOKUP($A2, Evaluations, 9, 0))
1) I need to add a criteria to the last part of the statement that says if $C2 is "" and VLOOKUP($A2, Kickout, 22, 0) = "", then do the VLOOKUP($A2, Evaluations, 9, 0).
2) Also, how can I modify the whole formula to never return a 0, but a blank? Currently if any of the cells it is looking up locates a blank space I am getting a 0 return.
=IFERROR(IF($C2="X", VLOOKUP($A2,Manuals, 2, 0), IF($C2="", VLOOKUP($A2, Kickout, 22, 0))), VLOOKUP($A2, Evaluations, 9, 0))
1) I need to add a criteria to the last part of the statement that says if $C2 is "" and VLOOKUP($A2, Kickout, 22, 0) = "", then do the VLOOKUP($A2, Evaluations, 9, 0).
2) Also, how can I modify the whole formula to never return a 0, but a blank? Currently if any of the cells it is looking up locates a blank space I am getting a 0 return.