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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Anonymous
Not applicable

Using the IN operator without explicitely typing out the values

Hello,

While using the IN operator I am encountering an issue because my list of values is calculated (it changes with the x-axis of my visual) and cannot be typed out.

I know how to use IN with the explicitely typed out values, e.g.

table[season] IN {"spring", "summer"}

But is it possible to use it with a row/table such as

table[season] IN [measure]

?

The (simplified) examples of my measures look as follows:

getRelevantIDs =
CALCULATE(
    VALUES(table1[id]),
    FILTER(
        table1,
        -- some filter criteria based on the x-axis of the visual...
    )
)
countFilteredProjects =
CALCULATE(
    DISTINCTCOUNT(table[id]),
    FILTER(
        ALL(table1),
        -- some other filter criteria,
        table1[id] IN [getRelevantIDs]
    )
)

But this doesn't work and I receive the error that "[getRelevantIDs] is not a valid table".

Is there a way to do this? Or an alternative to using IN?

Thank you for your input!

1 ACCEPTED SOLUTION

In the getRelevantIDs variable change CALCULATE to CALCULATETABLE

View solution in original post

4 REPLIES 4
johnt75
Super User
Super User

You can build a temporary table in a variable, and you can use tables as filters, so the below should work I think

countFilteredProjects =
var getRelevantIDs =
CALCULATE(
    VALUES(table1[id]),
    FILTER(
        table1,
        -- some filter criteria based on the x-axis of the visual...
    )
)
CALCULATE(
    DISTINCTCOUNT(table[id]),
    FILTER(
        ALL(table1),
        -- some other filter criteria,
        getRelevantIDs
    )
)
Anonymous
Not applicable

Hi johnt75,

Thank you for your suggestion! I have tried to combine the two measures into one and used getRelevantIDs in the filter:

 

countFilteredProjects =

VAR getRelevantIDs =
CALCULATE(
    VALUES(table1[id]),
    FILTER(
        table1,
        -- some filter criteria based on the x-axis of the visual...
    )
)

RETURN
CALCULATE(
    DISTINCTCOUNT(table1[id]),
    FILTER(
        ALL(table1),
        -- some other filter criteria,
        getRelevantIDs
    )
)

 

The measure itself doesn't display an error anymore, but whenever I try to use it in a visual I get "MdxScript(Model) (2675, 9) Calculation error in measure 'measures'[countFilteredProjects]: A table of multiple values was supplied where a single value was expected."

I am not sure if we can just use the result of VALUES as a argument for FILTER?

For example, in this post DAX Filter A Table by Another Table the accepted solution is something like

CALCULATE(SUM(table1[Values]), FILTER(Table1, Table1[Product ID] IN VALUES(Table2[Product ID])))

and I don't understand why it doesn't work in my case here. I am using IN VALUES(...), just with the result of VALUES calculated separately.

 

In the getRelevantIDs variable change CALCULATE to CALCULATETABLE

Anonymous
Not applicable

With CALCULATETABLE it works just as expected! So simple and yet I would never have thought of it. Thank you so much 🙂

My finished measure looks now like this:

 

countFilteredProjects =

VAR getRelevantIDs =
CALCULATETABLE(
    VALUES(table1[id]),
    FILTER(
        table1,
        -- some filter criteria based on the x-axis of the visual...
    )
)

RETURN
CALCULATE(
    DISTINCTCOUNT(table1[id]),
    FILTER(
        ALL(table1),
        -- some other filter criteria &&
        table1[id] IN getRelevantIDs
    )
)

 

(It only works when having the temporary table in a variable and not if it is in a separate measure. But that is not an issue.)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors