This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I am trying to count the number of "Other" leaves.
This returns 0, as we can't count on a multiple filter, any ideas as to how to resolve in a measure?
Solved! Go to Solution.
@TeamCanada26__ Perhaps try:
Measure =
VAR __Table = FILTER('Demographic',[Leave Type] IN {
"Family Related and Personal Leave without Pay > Care and Nurturing LWOP",
"Family Related and Personal Leave without Pay > Maternity LWOP",
"Family Related and Personal Leave without Pay > Maternity LWOP",
"Family Related and Personal Leave without Pay > Parental LWOP",
"Family Related and Personal Leave without Pay > Parental LWOP",
"Family Related and Personal Leave without Pay > Relocation of Spouse LWOP",
"Leave without Pay > Sick LWOP",
"Other Leave without Pay > Educational LWOP",
"Other Leave without Pay > Long-Term Disability LWOP",
"Other Leave without Pay > Other LWOP",
"Other Leave without Pay > Self Funded LWOP",
"Other Leave without Pay > Suspension/Disciplinary Action LWOP",
"Other Leave without Pay > Union Business LWOP"
}
)
RETURN
COUNTAX(__Table,[Leave Type])
Thank you!
@TeamCanada26__ Perhaps try:
Measure =
VAR __Table = FILTER('Demographic',[Leave Type] IN {
"Family Related and Personal Leave without Pay > Care and Nurturing LWOP",
"Family Related and Personal Leave without Pay > Maternity LWOP",
"Family Related and Personal Leave without Pay > Maternity LWOP",
"Family Related and Personal Leave without Pay > Parental LWOP",
"Family Related and Personal Leave without Pay > Parental LWOP",
"Family Related and Personal Leave without Pay > Relocation of Spouse LWOP",
"Leave without Pay > Sick LWOP",
"Other Leave without Pay > Educational LWOP",
"Other Leave without Pay > Long-Term Disability LWOP",
"Other Leave without Pay > Other LWOP",
"Other Leave without Pay > Self Funded LWOP",
"Other Leave without Pay > Suspension/Disciplinary Action LWOP",
"Other Leave without Pay > Union Business LWOP"
}
)
RETURN
COUNTAX(__Table,[Leave Type])
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |