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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
lalford96
Frequent Visitor

Create a measure looping through a table

Hi,

 

I am trying to create a measure that basically checks if a value in one column equals one from a list that I am currently manually typing, and then checks a second column to see if the value equals one from a list that I am manually typing. It is then calculating the total amount of returns.

 

The problem I am having is the measure is becoming very long and difficult to read as there are a lot of or statements both sides. For example it looks like this:

 

Calculate(COUNT('Data'[ColumnName]), FILTER(
'Data', 'Data'[ColumnName] = "Example1" || 'Data', 'Data'[ColumnName] = "Example2" 'Data', || 'Data'[ColumnName] = "Example3" && 'Data', 'Data'[ColumnName2] = "Example1" || 'Data', 'Data'[ColumnName2] = "Example2" || 'Data', 'Data'[ColumnName2] = "Example3"
 
And this is a short example, this is repeated around 20 times per measure. 
 
Is there a more simplified way to create this measure, or do I simply have to type them all out the way I have been?
1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @lalford96 ,

 

In DAX you can use the IN { } method to help simplify your measures:

CALCULATE(
    COUNT('Data'[ColumnName]),
    FILTER(
        'Data',
        'Data'[ColumnName] IN {"Example1", "Example2", "Example3"}
            && 'Data'[ColumnName2] IN {"Example1", "Example2", "Example3"}
    )
)

 

Using this method you should also be able to go a step further by creating a new table with a column just containing the values you want (let's call the table and the column 'SearchValues' and 'SearchValues2'):

CALCULATE(
    COUNT('Data'[ColumnName]),
    FILTER(
        'Data',
        'Data'[ColumnName] IN {SearchValues[SearchValues]}
            && 'Data'[ColumnName2] IN {SearchValues2[SearchValues2]}
    )
)

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

1 REPLY 1
BA_Pete
Super User
Super User

Hi @lalford96 ,

 

In DAX you can use the IN { } method to help simplify your measures:

CALCULATE(
    COUNT('Data'[ColumnName]),
    FILTER(
        'Data',
        'Data'[ColumnName] IN {"Example1", "Example2", "Example3"}
            && 'Data'[ColumnName2] IN {"Example1", "Example2", "Example3"}
    )
)

 

Using this method you should also be able to go a step further by creating a new table with a column just containing the values you want (let's call the table and the column 'SearchValues' and 'SearchValues2'):

CALCULATE(
    COUNT('Data'[ColumnName]),
    FILTER(
        'Data',
        'Data'[ColumnName] IN {SearchValues[SearchValues]}
            && 'Data'[ColumnName2] IN {SearchValues2[SearchValues2]}
    )
)

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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