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.
Good morning,
I'm stuck in a seemingly easy problem, illustrated below:
I have two linked tables:
I'm trying to calculate the % of TV and Cinema in a bar chart with a slicer for choosing Country. If I use Count as % of GT in the second table only, it gives me a wrong number because it takes into account all rows, where Respondents are duplicated (as it is unpivoted).
I then tried the following formula: %Value=COUNTA('Tab2'[Value]) / CALCULATE(Sum('Tab1'[Count]),ALL('Tab1') but this returns the correct results for the total sample, but wrong results when I start slicing by Country (because the Sum of Count remains constant so it always divides by the total sample.
To illustrate, this is what I'm trying to achieve:
I tried a lot of variations of the formula above, but never got it work for both Total sample and by country. What am I missing?
Any help much appreciated!
George
Solved! Go to Solution.
Hi @Anonymous,
Please modify your measure as below:
%Value =
COUNTA ( 'Tab2'[Value] )
/ CALCULATE ( SUM ( 'Tab1'[Count] ), ALLEXCEPT ( 'Tab1', Tab1[Country] ) )
Best regards,
Yuliana Gu
Hi @Anonymous,
Please modify your measure as below:
%Value =
COUNTA ( 'Tab2'[Value] )
/ CALCULATE ( SUM ( 'Tab1'[Count] ), ALLEXCEPT ( 'Tab1', Tab1[Country] ) )
Best regards,
Yuliana Gu
Thank you very much Yuliana!
Your solution did the trick (+ getting rid of a two-way relationship between my tabs!)
George.
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 |
|---|---|
| 32 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 45 | |
| 28 | |
| 24 | |
| 22 |