This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Is it possible to embed the active filter info into a visual (as in the highlight in the capture)? This would help with dashboard creation and use, especially if the same visual is put into a dashboard multiple times with different filter criteria applied to each. I know this can be done when copying and pasting a visual out of the service, but I want to have the same info visible within a visual that is in a dashboard.
Solved! Go to Solution.
And the other problem is that you have to specify every filter individually, which can be a real problem if there are dozens of filters. This solves that problem using DAX Studio. Take the results they put into a tooltip, and instead put that measure into the subtitle. Voila!
Yes, you can use below
Filters Selected =
IF (
ISFILTERED ( MyTable[MyColumn] ),
CONCATENATEX ( FILTERS ( MyTable[MyColumn] ), MyTable[MyColumn], ", " ),
"ALL"
)
For detailed tutorial refer https://www.datapears.com/post/creative-ways-to-show-filter-selections-on-your-power-bi-reports
Unfortunately, that appears to try to solve the problem by creating a second visual dedicated only to showing the filter info. However, you led me to a solution that keeps the filter info in the main visual. Using your DAX, the measure can be added within a visual via the subtitle function in the Visualizations Pane>Format>General>Subtitle option.
And the other problem is that you have to specify every filter individually, which can be a real problem if there are dozens of filters. This solves that problem using DAX Studio. Take the results they put into a tooltip, and instead put that measure into the subtitle. Voila!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 7 | |
| 6 |
| User | Count |
|---|---|
| 42 | |
| 27 | |
| 25 | |
| 22 | |
| 22 |