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 above image shows the Measures I am trying to generate, but the Average tiles are not correct.
When a given month is chosen within the slicer, Total Distinct Accounts is correctly generating how many Distinct Account Numbers are being utilized over the course of the entire selected month. Even though, each distinct account is being accessed multiple different times on multiple different days.
What I need measures for are the Daily Sum of Distinct Account Numbers utilized, per day.
Example :
Day 1 = March 1, 2025 = 80 Distinct Account Numbers
Day 2 = March 2, 2025 = 57 Distinct Account Numbers
Day 3 = March 3, 2025 = 63 Distinct Account Numbers
Etc.
In order to get the Average per day with something like = DIVIDE(SUM(Day1-Day30),Workdays)
In order to get the Average per hour with something like = DIVIDE(SUM(Day1-Day30),WorkHour)
I've tried a couple measres on my own and they aren't givingme what I'm looking for, not even close.
Tested:
Thank you so much!
Solved! Go to Solution.
Hi,
You should create a Calendar table. Build a relationship between the Date column of your Fact table with the Date column of the Calendar Table. To your visuals/filters/slicers, drag Date from the Calendar table. Write these measures
Measure = DISTINCTCOUNT('Activities Master Workbook'[Account Number])
Measure1 = SUMX(Calendar,[Measure])
Hope this helps.
Hi,
You should create a Calendar table. Build a relationship between the Date column of your Fact table with the Date column of the Calendar Table. To your visuals/filters/slicers, drag Date from the Calendar table. Write these measures
Measure = DISTINCTCOUNT('Activities Master Workbook'[Account Number])
Measure1 = SUMX(Calendar,[Measure])
Hope this helps.
That did the trick!!! I had to modify my DAX just a little bit but it works great thank you!
You are welcome.
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 |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 62 | |
| 34 | |
| 33 | |
| 25 | |
| 24 |