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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Seanhu7
Frequent Visitor

Filter Return

Hi, I have a dashbaord with a number of filters - and cards then obviously react as these filters are used, however when filters are not used I would like the tile to return null or blank rather than return the First item in the list I have used CALCULATE ( IF ( ISFILTERED ( Table[Column] ), 1, 0 ), ALLSELECTED ( Table ) ) But this obviously brings back 1 for all filtered items - how do I get it to bring back the actual filtered value? Thanks in advance
2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Seanhu7 , not very clear. Something like that

IF ( ISFILTERED ( Table[Column] ), concatenatex(Table,Table[Column]), blank() )

View solution in original post

v-juanli-msft
Community Support
Community Support

Hi @Seanhu7 

I value amitchandak's answer, but a little change to avoid duplicating the same slicer item.

Capture3.JPG

measure1 = IF ( ISFILTERED ( 'Table'[category] ), CONCATENATEX(VALUES('Table'[category]),[category]),BLANK())

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @Seanhu7 

I value amitchandak's answer, but a little change to avoid duplicating the same slicer item.

Capture3.JPG

measure1 = IF ( ISFILTERED ( 'Table'[category] ), CONCATENATEX(VALUES('Table'[category]),[category]),BLANK())

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Seanhu7 , not very clear. Something like that

IF ( ISFILTERED ( Table[Column] ), concatenatex(Table,Table[Column]), blank() )

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.