Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I want to create a measure to show a sign only when multiple filters are chosen (5x). I don't really get the result I want. When I choose 3 filters, (Blank) pops up as text, when i choose 4 filters i get the requested text from the formula.
Following formula was used:
Solved! Go to Solution.
Could you try using && for the AND instead of seperate IF statements
measure =
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
Try
Measure =
IF(
COUNTROWS(
ALLSELECTED(
'price list upload'[Item Type],
'price list upload'[Country],
'price list upload'[Item no.],
'price list upload'[Route],
'price list upload'[Currency]
)
) = 5,
UNICHAR(128504),
"choose all filters"
)
This checks if all 5 filters are applied by counting how many fields have been filtered and shows the symbol when the count equals 5. Otherwise, it prompts the user to "choose all filters."
If this helped, a Kudos 👍 or Solution mark would be great!
Cheers,
Kedar Pande
www.linkedin.com/in/kedar-pande
Thank you for that. Unfortunately, I still get the "mark all filters" , even if I choose all 5 filters.
Could you try using && for the AND instead of seperate IF statements
measure =
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
Thank you. This one worked. Kudos!
Super! If you could mark it as a solultion for others to find, thank you!
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.