Forum Discussion
reast
Helper II
10 years agoFilter Active Clients by Date Range
I'm trying to figure out how to use the time slicer to filter active clients. They don't have a single date field to link with the calendar. They have a start date and an end date (or it's blank if t...
MattAllington
Community Champion
10 years agoThe first parameter of your filter function is a column - that is not allowed. You will note in my formula it is a table.
reast
Helper II
10 years agoThanks for your patience. I fixed the measure: Measure = Calculate(countrows('Clients'),filter('Clients', 'Clients'[INTAKE_DATE] >=[Selected Start] && 'Clients'[Discharge] <= [selected End])).
However, it still only seems to be pulling new clients in the date range, not all active clients (should be over 300).