Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear All,
I would like to count distinct emails for each day and then find the max of the distinctcount of each day.
How can I do that ? Below is an example.
Thank you.
SAMPLE TABLE:
DISTINCT COUNT EMAILS
FINAL TABLE MAX OF DISTINCT COUNT
Solved! Go to Solution.
@Anonymous
Create the following measure and use with the date:
Max Count of Emails =
MAXX(
ADDCOLUMNS(
VALUES(Table12[Email]),
"mx", CALCULATE( COUNT(Table12[Email] ))
),
[mx]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
I am getting the same results you showed. insert a table visual and add date and the measure.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Actually I forgot to tell I have date slicer whenever I slice the date it should return one number and it should be 4 in this case I am sorry thank you
@Anonymous
I am getting the same results you showed. insert a table visual and add date and the measure.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
Create the following measure and use with the date:
Max Count of Emails =
MAXX(
ADDCOLUMNS(
VALUES(Table12[Email]),
"mx", CALCULATE( COUNT(Table12[Email] ))
),
[mx]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Actually I forgot to tell I have date slicer whenever I slice the date it should return one number and it should be 4 in this case I am sorry thank you
It is counting the rows I need max of count . Can you fix that please? Thank you.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!