create cross-filtering for different looks on the same dashboard

Good morning,

Is it possible to create cross-filtering for different views in the same Dashboard?

Example: I have data on receipt of amounts in one dashboard and in the other the dates of the reasons for receipts, which can be more than one reason.

I want that when filtering the dates and company, it filters both views, which are from different explorers.

0 1 196
1 REPLY 1

Hi,

If you're trying to set up a basic cross-filter in Looker Studio, it's simple. Just go to the "Setup" tab of your chart, then scroll down to the "Chart Interactions" section. From there, turn on Cross-filtering.

Sichali1_0-1744490497575.png

 

Once it’s enabled, clicking on a data point in one chart will automatically filter the other charts on the same page based on that value. It’s super helpful when you're trying to make your report more interactive and user-friendly.

If you want something more advanced, like filtering across the whole page or using specific logic, I recommend creating a Boolean calculated field in your data source. This lets you build filters using custom conditions, which gives you more control. For example, if you want to highlight or filter sales from Region A, you could create a calculated field like this:

CASE 

  WHEN Region = "A" THEN TRUE 

  ELSE FALSE 

END

This will return TRUE for rows where the region is "A" and FALSE for everything else. You can use this calculated field as a filter control in your report. Add a checkbox filter to your page and choose your newly created Region A Sales field. This gives viewers the option to toggle between all regions or just Region A with a simple checkbox, great for interactivity and clean report layouts.

Top Labels in this Space
Top Solution Authors