Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare 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
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
116 | |
108 | |
108 | |
93 | |
70 |
User | Count |
---|---|
173 | |
135 | |
131 | |
96 | |
94 |