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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all,
I am stuck with a report , where I have below representation of data .
Above 4 Table comes from different dataset , Customer wants to see as combined value whereas there is no common connecting factor .
Here continent is being connected with a country dimension table via lookup.
All the percentage values are measure which are calculated in runtime.
Another challenging part is we have visual level filter for each visual applied too.
This page also has a "created on" Date filter. Each data set has their own date column.
Customer wants to see the Continent name and percentages as like below ,
Kindly assist , How this can be solved.
Thanks in advance.
Solved! Go to Solution.
Hi @Anonymous ,
A similar effect can be achieved by creating a calculated table and adding a calculate filter through the dax function. Refer to below formula:
Table =
SUMMARIZECOLUMNS (
FactTable[Position],
"result1", CALCULATE ( SUM ( FactTable[Value] ), FactTable[Category] = "a" ),
"result2", CALCULATE ( SUM ( FactTable[Value] ), FactTable[Category] = "b" ),
"result3", CALCULATE ( SUM ( FactTable[Value] ), FactTable[Category] = "c" ),
"result4", CALCULATE ( SUM ( FactTable[Value] ), FactTable[Category] = "d" )
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
A similar effect can be achieved by creating a calculated table and adding a calculate filter through the dax function. Refer to below formula:
Table =
SUMMARIZECOLUMNS (
FactTable[Position],
"result1", CALCULATE ( SUM ( FactTable[Value] ), FactTable[Category] = "a" ),
"result2", CALCULATE ( SUM ( FactTable[Value] ), FactTable[Category] = "b" ),
"result3", CALCULATE ( SUM ( FactTable[Value] ), FactTable[Category] = "c" ),
"result4", CALCULATE ( SUM ( FactTable[Value] ), FactTable[Category] = "d" )
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 39 | |
| 37 | |
| 29 | |
| 24 |
| User | Count |
|---|---|
| 122 | |
| 110 | |
| 83 | |
| 69 | |
| 68 |