I am trying to populate chart data for a specific Fiscal Year and Month based on a specific data table. Fiscal year is on one row followed by the month underneath while the data
[pre]
[/pre]
I am wating to be able to populate the data by Fiscal Year and then by month. I have tried the VLOOKUP with MATCH
"=VLOOKUP(valData1,Datatbl,MATCH(valFiscalYear,1stFiscalYear,0)+MATCH(valMonth,1stMonth,0)+1,FALSE)"
When I enter FY12 & JAN I recieve the corect data. However, when I select FY13 & JAN it returns FY13 NOV data. I am guessing its due to my FY being OCT-SEP.
How do I fix this?
[pre]
Code:
FY12 FY12 FY13 ""
JAN FEB MAR ""
Data 1
Data 2
Data 3
""
I am wating to be able to populate the data by Fiscal Year and then by month. I have tried the VLOOKUP with MATCH
"=VLOOKUP(valData1,Datatbl,MATCH(valFiscalYear,1stFiscalYear,0)+MATCH(valMonth,1stMonth,0)+1,FALSE)"
When I enter FY12 & JAN I recieve the corect data. However, when I select FY13 & JAN it returns FY13 NOV data. I am guessing its due to my FY being OCT-SEP.
How do I fix this?