Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Is there a way to see on a page what filters have been applied either from a slicer or selecting something in a graph? Preferably the combination of all of the above?
Proud to be a Super User!
Solved! Go to Solution.
You can try a combination of these MEASURES
1) You can Place this in a Card
Is Report Filtered = IF ( COUNTROWS ( ALL ( TableName ) ) - COUNTROWS ( TableName ) > 0, "YES", "NO" )
You can modify this further many ways especially if you use the OKViz Card with States
changing the Message and Values, etc... many, many options...
2) Depending on how many values you have in the Slicer Column you can use either of these Measures
If you have too many values to list all
Year(s) Selected = IF ( HASONEVALUE ( 'Calendar'[Year] ), FORMAT ( MAX ( 'Calendar'[Year] ), "General Number" ), "Multiple" )
OR
if you'd rather list all values (when you don't have that many in the slicer column you are using)
Year(s) Selected 2 = CONCATENATEX ( VALUES ( 'Calendar'[Year] ), 'Calendar'[Year], ", " )
NOTE only the first Measure [Is Report Filtered] will show you if the report is filtered using the Page Level filters!
EDIT: I guess you can combine both like this
Year(s) Selected 3 = IF ( COUNTROWS ( ALL ( TableName ) ) - COUNTROWS ( TableName ) > 0, CONCATENATEX ( VALUES ( 'Calendar'[Year] ), 'Calendar'[Year], ", " ), "Showing ALL Years" )
And the results would look like this...
So Year(s) Selected 3 will only say "Showing ALL Years" when report is NOT filtered otherwise will list the years
Hope this helps!
You can try a combination of these MEASURES
1) You can Place this in a Card
Is Report Filtered = IF ( COUNTROWS ( ALL ( TableName ) ) - COUNTROWS ( TableName ) > 0, "YES", "NO" )
You can modify this further many ways especially if you use the OKViz Card with States
changing the Message and Values, etc... many, many options...
2) Depending on how many values you have in the Slicer Column you can use either of these Measures
If you have too many values to list all
Year(s) Selected = IF ( HASONEVALUE ( 'Calendar'[Year] ), FORMAT ( MAX ( 'Calendar'[Year] ), "General Number" ), "Multiple" )
OR
if you'd rather list all values (when you don't have that many in the slicer column you are using)
Year(s) Selected 2 = CONCATENATEX ( VALUES ( 'Calendar'[Year] ), 'Calendar'[Year], ", " )
NOTE only the first Measure [Is Report Filtered] will show you if the report is filtered using the Page Level filters!
EDIT: I guess you can combine both like this
Year(s) Selected 3 = IF ( COUNTROWS ( ALL ( TableName ) ) - COUNTROWS ( TableName ) > 0, CONCATENATEX ( VALUES ( 'Calendar'[Year] ), 'Calendar'[Year], ", " ), "Showing ALL Years" )
And the results would look like this...
So Year(s) Selected 3 will only say "Showing ALL Years" when report is NOT filtered otherwise will list the years
Hope this helps!
hi,
This blog post from Chris Webb may help you - https://blog.crossjoin.co.uk/2016/04/25/dynamic-chart-titles-in-power-bi/
For your case you could use something like - SelectedValues = IF( ISFILTERED(Sales[Category]), "Selecetd Filter " & CONCATENATEX(VALUES(Sales[Category]),Sales[Category],","),"")
Prathy
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
147 | |
85 | |
66 | |
52 | |
46 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |