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 everybody,
I am trying to filter a column by another column. I am trying to make multiple filters by other column, in this case by account.
I want to SUM the following column: [AMOUNT]
I want to filter the column CxC_Partidas[Importe en moneda local] , by the accounts "4307000001" and "4300000001" (text format)
I tried to solve it trough many ways but I am not capable to find a solution that does this without creating two or more measures.
Any idea?
Solved! Go to Solution.
Hey @Anonymous ,
from your description this should be doable.
Although the columns in the description and the ones in the measure are a little different.
Try the following measure:
Deuda =
CALCULATE (
SUM ( myTable[AMOUNT] ),
FILTER ( CxC_Partidas, CxC_Partidas[Importe en moneda local] IN { "4307000001", "4300000001" } )
)
Hey @Anonymous ,
from your description this should be doable.
Although the columns in the description and the ones in the measure are a little different.
Try the following measure:
Deuda =
CALCULATE (
SUM ( myTable[AMOUNT] ),
FILTER ( CxC_Partidas, CxC_Partidas[Importe en moneda local] IN { "4307000001", "4300000001" } )
)
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.