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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
This is my data set (about 100000rows) I want to count how many files are created each day.
I havde created a Calender (Kalender = CALENDAR(MIN('Query'[CreatedDate]),MAX('Query'[CreatedDate])))
and set up the following relation. Date -> CreatedDate (1:*)
My measure for counting is Count = DISTINCTCOUNT('Query'[CourseElementId])
The result is not exactly impressive… 🙂 im obviously not doing it right. But what am I not getting?
Solved! Go to Solution.
Hi @moei,
Perhaps you can try to use the following measure formula if it works on your side:
Count =
CALCULATE (
COUNTROWS ( VALUES ( 'Query'[CourseElementId] ) ),
VALUES ( Calendar[Date] )
)
If the above not help, can you please share some dummy data to test?
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
Hi @moei,
Perhaps you can try to use the following measure formula if it works on your side:
Count =
CALCULATE (
COUNTROWS ( VALUES ( 'Query'[CourseElementId] ) ),
VALUES ( Calendar[Date] )
)
If the above not help, can you please share some dummy data to test?
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
You solution worked! Thank you very much 😄
Thank you very much for your suggestion. I will try this asap.
Hi,
I cannot spot the mistake in what ou have done. Share the link from where i can download your PBI file.
"My measure " - you either need to use a calcuated column, or change your measure formula.
User | Count |
---|---|
98 | |
76 | |
75 | |
48 | |
27 |