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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

ISFILTERED doesn't work on merged queries table

I have two tables imported from separate spreadsheets... 

 

Projects:

- ID

- Code

- Geo

 

Surveys:

- Code

- NPS

 

I combined these tables using an inner join on column "code" with "merge queries" to be:

 

Surveys_Merge:

- Code

- NPS

- Projects.ID

- Projects.Geo

 

With these combined, I created a slicer on "Surveys_Merge[Projects.Geo]"

And a data card with the value of: IF(ISFILTERED(Surveys_Merge[Projects.Geo]), "True", "False")

 

In theory this should show "False" if nothing is selected in the slicer, and "True" if something is selected in the slicer... however I'm finding that it just always returns "False" no matter if anything is selected in the slicer or not.

 

Can anyone else verify this behavior on merged tables? I realize there are easier ways to accomplish the above, but the above is a simplification for testing/illustration of my actual problem which requires merged queries, so I'm trying to get the "ISFILTERED" working against a slicer from a merged queries table... 

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @Anonymous

Do you create a new measure?

Calculated columns can't change with the slicer.

Calculated columns are only calculated once - when you load/refresh your data model. After that, they contain fixed, static values that can not respond to slicers.

 

To achieve your goal, you will need to redesign your chart using measures, not calculated columns. 

 

measure = IF(ISFILTERED(surveys[project.geo]), "True", "False")

3.png

 

1.png

 

2.png

 

Please download my pbix to test on your site. By the way, i'm using the Version: 2.64.5285.741 64-bit (November 2018), please update to the lastest one if there is any error on your site.

 

Best Regards

Maggie

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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