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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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:
Solved! Go to Solution.
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
Proud to be a Datanaut!
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
Proud to be a Datanaut!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.