The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Experts
I have the following filter in my report and i want to see which filter selections i have made/selected in a Card, my filter are Region, COunty and MAn Site
I can get one to work, how do i apply this principle to the other filters.
Filters Selected = IF ( ISFILTERED ( MyTable[MyColumn] ), CONCATENATEX ( FILTERS ( MyTable[MyColumn] ), MyTable[MyColumn], ", " ), "ALL" )
Solved! Go to Solution.
Hi @Anonymous ,
You could set three measures like yours.
Or you can use "&" to show values together.
Measure = IF ( ISFILTERED ( SlicerA[Slicer A] ), CONCATENATEX ( FILTERS ( SlicerA[Slicer A] ), SlicerA[Slicer A], ", " ), "ALL" ) & "&" & IF ( ISFILTERED ( SlicerB[SlicerB] ), CONCATENATEX ( FILTERS ( SlicerB[SlicerB] ), SlicerB[SlicerB], ", " ), "ALL" )
Hi @Anonymous ,
You could set three measures like yours.
Or you can use "&" to show values together.
Measure = IF ( ISFILTERED ( SlicerA[Slicer A] ), CONCATENATEX ( FILTERS ( SlicerA[Slicer A] ), SlicerA[Slicer A], ", " ), "ALL" ) & "&" & IF ( ISFILTERED ( SlicerB[SlicerB] ), CONCATENATEX ( FILTERS ( SlicerB[SlicerB] ), SlicerB[SlicerB], ", " ), "ALL" )
User | Count |
---|---|
80 | |
74 | |
41 | |
30 | |
28 |
User | Count |
---|---|
108 | |
96 | |
53 | |
48 | |
47 |