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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply

ISFILTERED measure for multiple filters chosen only

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:

 

Measure =
IF(ISFILTERED('price list upload'[Item Type]),
IF(ISFILTERED('price list upload'[Country]),
IF(ISFILTERED('price list upload'[Item no.]),
IF(ISFILTERED('price list upload'[Route]),
IF(ISFILTERED('price list upload'[Currency]),
UNICHAR(128504),"choose all filters")))))
 
Can anybody give me a hint what can be wrong?
1 ACCEPTED SOLUTION
SamWiseOwl
Super User
Super User

Hi @AdamPowerBI2024 

 

Could you try using && for the AND instead of seperate IF statements

measure =

IF(ISFILTERED('price list upload'[Item Type])
&&ISFILTERED('price list upload'[Country])
&&ISFILTERED('price list upload'[Item no.])
&&ISFILTERED('price list upload'[Route])
&&ISFILTERED('price list upload'[Currency]),
UNICHAR(128504),"choose all filters")
 
Also on a side note instead of UNICHAR(128504) you can do emoji in quotes "💸"  use Windows + . to see the emoji keyboard in Windows.
SamWiseOwl_0-1728375687284.png

 


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.

View solution in original post

5 REPLIES 5
Kedar_Pande
Super User
Super User

@AdamPowerBI2024 

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.

SamWiseOwl
Super User
Super User

Hi @AdamPowerBI2024 

 

Could you try using && for the AND instead of seperate IF statements

measure =

IF(ISFILTERED('price list upload'[Item Type])
&&ISFILTERED('price list upload'[Country])
&&ISFILTERED('price list upload'[Item no.])
&&ISFILTERED('price list upload'[Route])
&&ISFILTERED('price list upload'[Currency]),
UNICHAR(128504),"choose all filters")
 
Also on a side note instead of UNICHAR(128504) you can do emoji in quotes "💸"  use Windows + . to see the emoji keyboard in Windows.
SamWiseOwl_0-1728375687284.png

 


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.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors