I have ranges of data in multiple forms. There is criteria that must match from each to be summed on a third sheet. The criteria are GL Accounts and a month Code. One of the month codes is listed as 12 Month. The intent of that code is to signify that the cost in one of the columns should be spread across 12 months.
So I created the following (excluding the inclusion of the 12 month)... of which I am playing with in Excel...
=SUMIFS('OpEx Reoccuring Expenses'!$H$2:$H$107,'OpEx Reoccuring Expenses'!$K$2:$K$107,A28,'OpEx Reoccuring Expenses'!$I$2:$I$107,K5)+SUMIFS('Non-Reoccuring Expenses'!$F$2:$F$57,'Non-Reoccuring Expenses'!$I$2:$I$57,'Expense Budget'!A28,'Non-Reoccuring Expenses'!$G$2:$G$57,'Expense Budget'!K5)
That formula returns proper results for anything with matching month and GL code. Now I need to add another statement that would include any data that matched the same GL code references and "12 Month" and then divide the value by 12.
To clarify:
The Values exist in Sheet 1 H2:H107 & Sheet 2 F2:F57.
The Criteria exist in Sheet 1 K2:K107 & I2:I107 & Sheet 2 I2:I57 & G2:G57