Hi,
I am unable to perform aggregate operation on two running measures, which will be changing base on Filter: Month.
Operating Income
=If([Period Name_Month] InList("JAN";"FEB";"MAR")) Then ""
ElseIf ([Period Name_Month] InList("APR";"MAY";"JUN")) Then (NoFilter([Balance]
Where ([Period Name_Month] InList("JAN";"FEB";"MAR")And [GL Description] InList("FX Income";"Fees_Commissions";"Other Income"));Drill))
ElseIf ([Period Name_Month] InList("JUL";"AUG";"SEP")) Then (NoFilter([Balance] Where ([Period Name_Month] InList("JAN";"FEB";"MAR";"APR";"MAY";"JUN")And [GL Description] InList("FX Income";"Fees_Commissions";"Other Income"));Drill))
ElseIf ([Period Name_Month] InList("OCT";"NOV";"DEC")) Then (NoFilter([Balance] Where ([Period Name_Month] InList("JAN";"FEB";"MAR";"APR";"MAY";"JUN";"JUL";"AUG";"SEP")And [GL Description] InList("FX Income";"Fees_Commissions";"Other Income"));Drill))
Total Operating Expense
=If([Period Name_Month] InList("JAN";"FEB";"MAR")) Then ""
ElseIf ([Period Name_Month] InList("APR";"MAY";"JUN")) Then (NoFilter([Balance] Where ([Period Name_Month] InList("JAN";"FEB";"MAR")And [GL Description] InList("Staff Costs";"Non operating costs";"Net Provisions")And [GL Description] InList("Staff Costs";"Non operating costs";"Net Provisions"));Drill))
ElseIf ([Period Name_Month] InList("JUL";"AUG";"SEP")) Then (NoFilter([Balance] Where ([Period Name_Month] InList("JAN";"FEB";"MAR";"APR";"MAY";"JUN")And [GL Description] InList("Staff Costs";"Non operating costs";"Net Provisions"));Drill))
ElseIf ([Period Name_Month] InList("OCT";"NOV";"DEC")) Then (NoFilter([Balance] Where ([Period Name_Month] InList("JAN";"FEB";"MAR";"APR";"MAY";"JUN";"JUL";"AUG";"SEP")And [GL Description] InList("Staff Costs";"Non operating costs";"Net Provisions"));Drill))
I had used above formula to display balance. and am unable to perform any aggregate operation. Showing error message.
Can anyone help me out please.
Thanks in advance.