Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
ugurarslan
Creator
Creator

Average of multiple sum % calculations different months

Dear all,

I need to take the average of sums of different months:

Sum 1:

(Sum({<[Year Month]={'$(Current_Month_YYYYMM)'}>}[Cash Amt USD])

/

Sum({<[Year Month]={'$(Current_Month_YYYYMM)'},[Type Code]={'INV'}>}total <[Year Month]>[Amt USD]))

Sum 2:

(Sum({<[Year Month]={'$(Prior_Month_YYYYMM)'}>}[Cash Amt USD])

/

Sum({<[Year Month]={'$(Prior_Month_YYYYMM)'},[Type Code]={'INV'}>}total <[Year Month]>[Amt USD]))


Sum 3:

(Sum({<[Year Month]={'$(Prior_Quarter_YYYYMM)'}>}[Cash Amt USD])

/

Sum({<[Year Month]={'$(Prior_Quarter_YYYYMM)'},[Type Code]={'INV'}>}total <[Year Month]>[Amt USD]))


Sum 4:

(Sum({<[Year Month]={'$(Prior_Year_YYYYMM)'}>}[Cash Amt USD])

/

Sum({<[Year Month]={'$(Prior_Year_YYYYMM)'},[Type Code]={'INV'}>}total <[Year Month]>[Amt USD]))


I tried:

Avg(

(Sum({<[Year Month]={'$(Current_Month_YYYYMM)'}>}[Cash Amt USD])

/

Sum({<[Year Month]={'$(Current_Month_YYYYMM)'},[Type Code]={'INV'}>}total <[Year Month]>[Amt USD]))

+

(Sum({<[Year Month]={'$(Prior_Month_YYYYMM)'}>}[Cash Amt USD])

/

Sum({<[Year Month]={'$(Prior_Month_YYYYMM)'},[Type Code]={'INV'}>}total <[Year Month]>[Amt USD]))

+

(Sum({<[Year Month]={'$(Prior_Quarter_YYYYMM)'}>}[Cash Amt USD])

/

Sum({<[Year Month]={'$(Prior_Quarter_YYYYMM)'},[Type Code]={'INV'}>}total <[Year Month]>[Amt USD]))

+

(Sum({<[Year Month]={'$(Prior_Year_YYYYMM)'}>}[Cash Amt USD])

/

Sum({<[Year Month]={'$(Prior_Year_YYYYMM)'},[Type Code]={'INV'}>}total <[Year Month]>[Amt USD])))


And this resulted in an error.


Please help me.


Ugur

4 Replies
Ivan_Bozov
Luminary
Luminary

Nested aggregation is not allowed.

You can just divide the result of all sums by 4, or I am missing something?

vizmind.eu
ugurarslan
Creator
Creator
Author

that doesn't give me result which I would like to see also.

ugurarslan
Creator
Creator
Author

it gives me a '-'

Ivan_Bozov
Luminary
Luminary

What kind of average do you want to see? Maybe check this: Average – Which average?

vizmind.eu