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
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 36 | |
| 28 | |
| 28 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 74 | |
| 66 | |
| 65 |