Forum Discussion
Anonymous
8 years agoNot applicable
Previous Quarter Average
Given this data:
How can I write DAX that will give me the average of these 3 retention numbers? I know the number should come out to 85.16 but in my attempt to calculate this, I'm getting this which is just the last number of the previous quarter:
6 Replies
- danbResolver I
Anonymous
I might be misunderstanding the issue but if you are selecting the year and months can't you just take a simple average in a measure?
Last Quarter Retention = AVERAGE(Table1[Retention])
This returns 85.16.
- AnonymousNot applicable
danb I was showing the month and year for demonstration purposes. On the actual page I'm using this for, I do not have these slicers so I'm trying to figure out how to calculate it through DAX.
- danbResolver I
Anonymous Can you upload a view of your current table you are working with?