When creating my Vlookup formula I am having issues with getting both columns in my array, but I also notice when I only want the value in the second column, it doesn't find the value. The below formula (column D) comes back with #N/A instead of C. When I change the column from 2 to 1 (=vlookup(A4,B1:C5,1,false)) it brings back the first column value, which in this case would be 3. when I enter a formula (=vlookup(A4,B1:C5,{1,2},false) I only receive back the first column value again (3) instead of 3 and C
example:
example:
column A | column B | column C | column D |
1 | App | 3 | =vlookup(C1,B1:C5,2,false) |
2 | Burr | ||
3 | grey | ||
4 | yellow | ||
5 | E |