Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Michalison
Helper II
Helper II

Count resignations for year on date slicer

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 slicer it then counts resignations for 2021 and 2022 so I obviously have to put in a measure that just counts the year I select - any help would be appreciated

 

Count Resignations = CALCULATE(COUNTROWS(Personnel_Records),FILTER(VALUES(Personnel_Records[Leaving Date]), Personnel_Records[Leaving Date] >= MIN('Date'[Date])),Personnel_Records[Leaving Reason]="Resignation")
1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

@Michalison 

Give this a try.

 

Count Resigantions =
VAR _Start = MIN ( Date[Date] )
VAR _End = MAX ( Date[Date] )
RETURN
    CALCULATE (
        COUNTROWS ( Personnel_Records ),
        Personnel_Records[Leaving Reason] = "Resignation",
        Personnel_Records[Leaving Date] >= _Start,
        Personnel_Records[Leaving Date] <= _End
    )

 

View solution in original post

2 REPLIES 2
jdbuchanan71
Super User
Super User

@Michalison 

Give this a try.

 

Count Resigantions =
VAR _Start = MIN ( Date[Date] )
VAR _End = MAX ( Date[Date] )
RETURN
    CALCULATE (
        COUNTROWS ( Personnel_Records ),
        Personnel_Records[Leaving Reason] = "Resignation",
        Personnel_Records[Leaving Date] >= _Start,
        Personnel_Records[Leaving Date] <= _End
    )

 

Spot on many thanks that brilliant

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.