This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
hi all ,
i have below data in daily basis recorded by each transaction in 1st table.
and 2nd table is the result i want.
Currently i use the formula of distinct count which means when i filter 3 months together we lost some customers due to the same customer code is not counted. but what we want is , Total Distinct Customers by Month and then when the user filter 3 months together , it will count total distinct customers by each month together.
i have master table of calendar and Master Data as relationship.
Solved! Go to Solution.
1) Create the distinct count measure:
Customer Distinct count =
DISTINCTCOUNT ( Table[Customer Code] )
2) Use this final measure:
Final count of Customers =
SUMX (
SUMMARIZE (
'Calendar Table',
'Calendar Table'[Month],
"@bymonth", [Customer Distinct count]
),
[@bymonth]
)
Proud to be a Super User!
Paul on Linkedin.
Hi, @Chanleakna123
Please check the below picture and the sample pbix file's link down below.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
Hi, @Chanleakna123
Please check the below picture and the sample pbix file's link down below.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
1) Create the distinct count measure:
Customer Distinct count =
DISTINCTCOUNT ( Table[Customer Code] )
2) Use this final measure:
Final count of Customers =
SUMX (
SUMMARIZE (
'Calendar Table',
'Calendar Table'[Month],
"@bymonth", [Customer Distinct count]
),
[@bymonth]
)
Proud to be a Super User!
Paul on Linkedin.
Check out the May 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 |
|---|---|
| 27 | |
| 26 | |
| 22 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 45 | |
| 43 | |
| 41 | |
| 21 | |
| 20 |