Forum Discussion
Dasbas
9 years agoFrequent Visitor
How to count values at a certain date
Hello, I am trying to create a dashboard for a service call system. In this system I have a Call date (open date) and a Close date. What i want to do is create a line graph which shows at what ti...
- 9 years ago
I forgot to mention a date should only appear once in your Dates table.
Regarding the filter expression, I made a copy and paste error.
[Number of calls opened at] = CALCULATE( COUNTROWS( Calls ) , FILTER( VALUES( Calls[opendate] ) , [opendate] < MAX( Dates[date] ) ) , FILTER( VALUES( Calls[closedate] ) , [closedate] >= MAX( Dates[date] ) ) )
LaurentCouartou
Solution Supplier
9 years agoI forgot to mention a date should only appear once in your Dates table.
Regarding the filter expression, I made a copy and paste error.
[Number of calls opened at] = CALCULATE( COUNTROWS( Calls )
, FILTER( VALUES( Calls[opendate] )
, [opendate] < MAX( Dates[date] )
)
, FILTER( VALUES( Calls[closedate] )
, [closedate] >= MAX( Dates[date] )
)
)
Dasbas
9 years agoFrequent Visitor
Thank you!