cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
JemmaD
Resolver I
Resolver I

DYNAMIC MEASURE TO DISPLAY FILTERED VALUES

Hi there,

 

I have a measure which checks if a slicer has been filtered and if so, it displays the items which have been selected and if not, it says "no filters".

However, for some reason it's showing several of each item selected - and I want it to be distinct. 

Here is my measure, can I specify that it shows distinct Product?

 

Filter Product = IF(ISFILTERED('Product'[Product]),CONCATENATEX('Product', 'Product'[Product], UNICHAR(10)), "No filters")
1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

@JemmaD try:

 

Filter Product = IF(ISFILTERED('Product'[Product]),CONCATENATEX(VALUES('Product'[Product]), 'Product'[Product], UNICHAR(10)), "No filters")

 


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

View solution in original post

1 REPLY 1
SpartaBI
Community Champion
Community Champion

@JemmaD try:

 

Filter Product = IF(ISFILTERED('Product'[Product]),CONCATENATEX(VALUES('Product'[Product]), 'Product'[Product], UNICHAR(10)), "No filters")

 


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors