Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hello All,
If I perform normal average function, see the DAX below
it is giving me 605/12=50.42 which total of Actual/total count of all months(12). But I would like to take only 6 month. ie. Is there any way to achieve this. so that it should take each month only once. Answer should be 605/6=100.83
Solved! Go to Solution.
@Anonymous , Create a measure like
TimeAggActual = divide(sum(KPI_Reporting[KPI_Comp1_Actual]), distinctcount(Table[Month]))
or
divide(Sumx(Values(Table[Month]), calculate(AVERAGE(KPI_Reporting[KPI_Comp1_Actual]))), distinctcount(Table[Month]))
Thanks its working.
@Anonymous , Create a measure like
TimeAggActual = divide(sum(KPI_Reporting[KPI_Comp1_Actual]), distinctcount(Table[Month]))
or
divide(Sumx(Values(Table[Month]), calculate(AVERAGE(KPI_Reporting[KPI_Comp1_Actual]))), distinctcount(Table[Month]))
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 39 | |
| 23 | |
| 21 |
| User | Count |
|---|---|
| 144 | |
| 106 | |
| 63 | |
| 38 | |
| 31 |