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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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