Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hello, I have a very long table such as below with data everyday from the past 5 years on which customer visited our store:
Date | Customer ID (stored as text) |
1/1/2000 | 111 |
1/1/2000 | 222 |
1/1/2000 | 333 |
1/1/2000 | 444 |
1/2/2000 | 222 |
1/2/2000 | 333 |
1/2/2000 | 444 |
1/2/2000 | 555 |
1/3/2000 | 222 |
etc for 5 years
I am trying to create a clusterd column chart showing the number of unique customers that visited our store each day, month (drilled up), quarter (drilled up), and year (drilled up again).
I created a column as below:
Solved! Go to Solution.
But I would like the average of distinct count of customer ID's by day
If you want it across days then you need to SUMMARIZE across days. Then add the DISTINCTCOUNT for each day and finally return the AVERAGEX of that column.
Hi, @alya1
Here is my detailed addition to IBendlin, maybe you can try the DAX expression below
Average Unique Customers =
AVERAGEX(
VALUES('Table'[Date]),
CALCULATE(DISTINCTCOUNT('Table'[Customer ID]))
)
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @alya1
Here is my detailed addition to IBendlin, maybe you can try the DAX expression below
Average Unique Customers =
AVERAGEX(
VALUES('Table'[Date]),
CALCULATE(DISTINCTCOUNT('Table'[Customer ID]))
)
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
But I would like the average of distinct count of customer ID's by day
If you want it across days then you need to SUMMARIZE across days. Then add the DISTINCTCOUNT for each day and finally return the AVERAGEX of that column.
Hi Ibendlin, thank you for your response. Would you mind writing out the dax please? I tried Yongkangs above but am still having the commented issue.
Please provide sample data that fully covers your issue. Needs more months and some years maybe.
Please show the expected outcome based on the sample data you provided.
Ah thank you so much! while writting out the data I realized I made an initial mistake! Your idea works 🙂 Thank you again!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
71 | |
70 | |
43 | |
43 |
User | Count |
---|---|
49 | |
42 | |
29 | |
28 | |
27 |