This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I have three tables as shown below. All three are unrelated and i dont want to move region name to country table.
I am looking for a calculated table as shown in output.
Is this possible? Any help on this is much appreciated. thanks in advance.
Solved! Go to Solution.
Hi @Anonymous ,
Please try code as below to create a measure.
SUMX =
VAR _Summarize =
SUMMARIZE (
DimRegion,
DimRegion[Region Name],
"Amount",
VAR _Country =
CALCULATETABLE (
VALUES ( DimCountry[Country] ),
FILTER ( DimCountry, DimCountry[Region] = MAX ( DimRegion[Region] ) )
)
RETURN
CALCULATE (
SUM ( Country[Amount] ),
FILTER ( Country, Country[Country] IN _Country )
)
)
RETURN
SUMX ( _Summarize, [Amount] )
Data model:
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Please try code as below to create a measure.
SUMX =
VAR _Summarize =
SUMMARIZE (
DimRegion,
DimRegion[Region Name],
"Amount",
VAR _Country =
CALCULATETABLE (
VALUES ( DimCountry[Country] ),
FILTER ( DimCountry, DimCountry[Region] = MAX ( DimRegion[Region] ) )
)
RETURN
CALCULATE (
SUM ( Country[Amount] ),
FILTER ( Country, Country[Country] IN _Country )
)
)
RETURN
SUMX ( _Summarize, [Amount] )
Data model:
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Thank you very much for your solution. it works without any error.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 26 | |
| 22 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 47 | |
| 46 | |
| 41 | |
| 21 | |
| 18 |