Forum Discussion
moei
5 years agoFrequent Visitor
Counting rows/entries pr date not working.. why?
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'[CreatedDa...
- Anonymous5 years ago
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
Anonymous
5 years agoNot applicable
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
moei
5 years agoFrequent Visitor
You solution worked! Thank you very much 😄