Forum Discussion

LeahS's avatar
LeahS
Frequent Visitor
3 years ago
Solved

Active Clients in time frame

I have the below data.  I'm trying to create a measure that will be tied to my date slicer (which filters by month & year).  I want the measure to count how many active clients there were in the mont...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi LeahS ,

     

    I suggest you to create a measure as below to count the active clients.

    Count Active Clients =
    VAR _SELECTSTART =
        MIN ( 'Date'[Date] )
    VAR _SELECTEND =
        MAX ( 'Date'[Date] )
    RETURN
        COUNTX (
            FILTER (
                'Lincoln Client Info',
                'Lincoln Client Info'[Start Date] <= _SELECTEND
                    && OR (
                        'Lincoln Client Info'[Discharge Date] >= _SELECTSTART,
                        'Lincoln Client Info'[Discharge Date] = BLANK ()
                    )
            ),
            [Client]
        )
    

    Result is as below.

     

    Best Regards,
    Rico Zhou

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.