geospatial
Active Member
- Joined
- Sep 2, 2008
- Messages
- 290
I am using Excel 2007 along with xcelsius. I have 2 drop down menus. One contains the months of the year and the other contains 7 states. When I choose January it puts a "1" in A1, february a "2" in A1 and so on. For my 7 states it does the same thing except puts a number in B1. So for missouri it would be a "1" in B1 for Nebraska a "2" in B1 and so on.
Below that I have a row 2 in which each cell is going to pull in different data. My formula right now looks like this.
This goes through until I hit A1=1,B1=7 and then goes into A1=2,B1=7 and so forth. When I finally get to A1=6 I start to get errors. Im guessing maybe I hit my limit?
Just wondering if there was something to simplify this process. Thought maybe a nested VLOOKUP but not sure.
Below that I have a row 2 in which each cell is going to pull in different data. My formula right now looks like this.
Code:
=IF(AND($A$1=1,$B$1=1),B12,"")&IF(AND($A$1=1,$B$1=2),B29,"")
This goes through until I hit A1=1,B1=7 and then goes into A1=2,B1=7 and so forth. When I finally get to A1=6 I start to get errors. Im guessing maybe I hit my limit?
Just wondering if there was something to simplify this process. Thought maybe a nested VLOOKUP but not sure.