Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
Solved! Go to Solution.
Hi @Michalison
please try
Count Resignations =
CALCULATE (
COUNTROWS ( Personnel_Records ),
'Date'[Date] >= MIN ( 'Date'[Date] ),
Personnel_Records[Leaving Reason] = "Resignation"
)
Thanks thats great
Hi @Michalison
please try
Count Resignations =
CALCULATE (
COUNTROWS ( Personnel_Records ),
'Date'[Date] >= MIN ( 'Date'[Date] ),
Personnel_Records[Leaving Reason] = "Resignation"
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 31 | |
| 20 | |
| 12 | |
| 12 |