Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
noviceBI
Helper I
Helper I

Removing filters from a report visual

Hello everyone,

 

In a Power BI report, I have several visuals filtered by year and month, using two slicers. However, I would like one of the visuals (a grouped histogram) to display the values ​​for all months of the year selected in the slicer, regardless of the month filter.

Is this possible? If so, how do I proceed?

 

Thank you in advance for your help!

1 ACCEPTED SOLUTION
dk_dk
Super User
Super User

Hi @noviceBI ,

Yes this is possible. You need to use "edit interactions" under the Format tab.

dk_dk_0-1741784560758.png



Click on Edit interactions, then select your Month slicer. You will see some icons show up above or below the other visuals. 

dk_dk_1-1741784628629.png

Making sure that the Month slicer remains selected, you need to click on the icon on the right (ø) in the icon set that is next to your histogram visual. Then you can deselect Edit interactions, and now your Month slicer should no longer affect the histogram.

You can read more about the edit interactions functionality here:
https://learn.microsoft.com/en-us/power-bi/create-reports/service-reports-visual-interactions?tabs=p... 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

3 REPLIES 3
danextian
Super User
Super User

Hi @noviceBI 

 

Using a related dimension table will show just the rows selected. You can instead  use a disconnected (no relationshiop) dates table and create measures: one to return the value for the selected month and another to return the values for all months in the same year as the selected month.

 

Total Revenue Month Selected = 
CALCULATE (
    [Total Revenue],
    TREATAS ( VALUES ( DisconnectedDate[Month and Year] ), Dates[Month and Year] )
)

Total Revenue Year Selected = 
CALCULATE (
    [Total Revenue],
    TREATAS ( VALUES ( DisconnectedDate[Year] ), Dates[Year] )
)

danextian_0-1741787782045.png

Please see the attached sample pbix

 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
dk_dk
Super User
Super User

Hi @noviceBI ,

Yes this is possible. You need to use "edit interactions" under the Format tab.

dk_dk_0-1741784560758.png



Click on Edit interactions, then select your Month slicer. You will see some icons show up above or below the other visuals. 

dk_dk_1-1741784628629.png

Making sure that the Month slicer remains selected, you need to click on the icon on the right (ø) in the icon set that is next to your histogram visual. Then you can deselect Edit interactions, and now your Month slicer should no longer affect the histogram.

You can read more about the edit interactions functionality here:
https://learn.microsoft.com/en-us/power-bi/create-reports/service-reports-visual-interactions?tabs=p... 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Hi @dk_dk,

 

That's perfect, thank you!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors