I have a formula in K12 as seen below
=IFERROR(VLOOKUP(F12,Table!A:W,23,FALSE),"")
I want to modify it to look at values in both F12 and H12, so I created the following
=IFERROR(VLOOKUP(F12&H12,Table!A:W,23,FALSE),"")
Even though the formula did not error out (syntax must be correct), I am not...