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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.