This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
The following code gives me the Average for each month going back 3 Financial Years (FY exists in my Date Table)
Averages =
VAR _table = SUMMARIZE(Date2,Date2[FY],"Count",COUNT('Cases'[incidentid]))
RETURN
AVERAGEX(_table,[Count])
How Do I replace the total below with an overall monthly Average?
Thanks
Solved! Go to Solution.
@ArchStanton , try a measure like
AVERAGEX(values(Date2[Month]),[Averages])
or
AVERAGEX(values(Date2[Month]),calculate(COUNT('Cases'[incidentid])))
@ArchStanton , try a measure like
AVERAGEX(values(Date2[Month]),[Averages])
or
AVERAGEX(values(Date2[Month]),calculate(COUNT('Cases'[incidentid])))
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 26 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 36 | |
| 32 | |
| 25 | |
| 23 |