Forum Discussion

Michalison's avatar
Michalison
Helper II
4 years ago
Solved

Counting Resignations

I would like to create a measure that counts the employee resignations by the year chosen on the year slicer - I have done a measure that does not quite work  if I click on year 2021 in the date slic...
  • tamerj1's avatar
    4 years ago

    Hi Michalison 

    please try

    Count Resignations =
    CALCULATE (
        COUNTROWS ( Personnel_Records ),
        'Date'[Date] >= MIN ( 'Date'[Date] ),
        Personnel_Records[Leaving Reason] = "Resignation"
    )