Forum Discussion
COUNT with FILTER based on dates
You could try this:
Number of books = CALCULATE ( COUNT (Books-Table[Date]), Books-Table[Date] = "9/10/2024" )
- Anonymous1 year ago
Hi,
Thanks for the solution ToddChitt offered,and i want to offer some more information for user to refer to.
hello Oros , you can try the following measure.
Number of books = COUNTROWS ( FILTER ( Books - Table, [Date] = DATE ( 2024, 9, 10 ) ) )Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous,
Thanks a lot. It works!
7 Replies
- ToddChittSuper User
You could try this:
Number of books = CALCULATE ( COUNT (Books-Table[Date]), Books-Table[Date] = "9/10/2024" )
- AnonymousNot applicable
Hi,
Thanks for the solution ToddChitt offered,and i want to offer some more information for user to refer to.
hello Oros , you can try the following measure.
Number of books = COUNTROWS ( FILTER ( Books - Table, [Date] = DATE ( 2024, 9, 10 ) ) )Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- OrosPost Prodigy
Hi Anonymous,
Thanks a lot. It works!