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.
My problem is that I've different tables for a portfolio and a benchmark it is being compared to. These tables are not connected, so I assume I can solve my problem using TREATAS().
I've a measure that works as expected:
Solved! Go to Solution.
Hi,
According to your description, i think you have at least three tables and the problem you have due to no relationship berween another two tables.
So i create three tables to test:
And for your second measure, i make some changes to it:
measure 2 =
CALCULATE (
DIVIDE (
SUM ( Position[MARKET_TOTAL_IN_EUR] ),
CALCULATE (
SUM ( Position[MARKET_TOTAL_IN_EUR] ),
ALLSELECTED ( Security[CLASS2] ),
ALLSELECTED ( Security[NAME1] ),
TREATAS ( VALUES ( Index[CLASS2] ), Security[CLASS2] ),
TREATAS ( VALUES ( Security[NAME1] ), Position[name1] )
)
)
)
The result shows:
Here is my test pbix file:
Best Regards,
Giotto Zhi
Hi,
According to your description, i think you have at least three tables and the problem you have due to no relationship berween another two tables.
So i create three tables to test:
And for your second measure, i make some changes to it:
measure 2 =
CALCULATE (
DIVIDE (
SUM ( Position[MARKET_TOTAL_IN_EUR] ),
CALCULATE (
SUM ( Position[MARKET_TOTAL_IN_EUR] ),
ALLSELECTED ( Security[CLASS2] ),
ALLSELECTED ( Security[NAME1] ),
TREATAS ( VALUES ( Index[CLASS2] ), Security[CLASS2] ),
TREATAS ( VALUES ( Security[NAME1] ), Position[name1] )
)
)
)
The result shows:
Here is my test pbix file:
Best Regards,
Giotto Zhi
I am dumbfounded how brilliant and intelligent people come to this forum. Going through your file, I feel like "wow, how smart is this person?". Thank you so much!
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.