I have an IF/THEN, VLOOKUP formula that is tied to a dropdown list of months, but I'm running into the issue of exceeding the max of 7 levels. I have seen a lot of posts on switching to CHOOSE, INDEX, LOOKUP, MATCH, but I can't translate these solutions for my issue. Cell A3 is the month dropdown list. This is my first time posting, so I hope I'm following all of the rules. Thank you in advance.
Code:
=IF($A$3="All",VLOOKUP($B8,'2015'!$B$1:$AG$900,16,FALSE),IF($A$3="Jan",VLOOKUP($B8,'2015'!$B$1:$AG$900,4,FALSE), IF($A$3="Feb",VLOOKUP($B8,'2015'!$B$1:$AG$900,5,FALSE), IF($A$3="Mar",VLOOKUP($B8,'2015'!$B$1:$AG$900,6,FALSE), IF($A$3="Apr",VLOOKUP($B8,'2015'!$B$1:$AG$900,7,FALSE), IF($A$3="May",VLOOKUP($B8,'2015'!$B$1:$AG$900,8,FALSE), IF($A$3="Jun",VLOOKUP($B8,'2015'!$B$1:$AG$900,9,FALSE), IF($A$3="Jul",VLOOKUP($B8,'2015'!$B$1:$AG$900,10,FALSE), IF($A$3="Aug",VLOOKUP($B8,'2015'!$B$1:$AG$900,11,FALSE), IF($A$3="Sep",VLOOKUP($B8,'2015'!$B$1:$AG$900,12,FALSE), IF($A$3="Oct",VLOOKUP($B8,'2015'!$B$1:$AG$900,13,FALSE), IF($A$3="Nov",VLOOKUP($B8,'2015'!$B$1:$AG$900,14,FALSE), IF($A$3="Dec",VLOOKUP($B8,'2015'!$B$1:$AG$900,15,FALSE)