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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi ,
Here is an example of what I want :
I have the number of purchases by month and by country.
I have two filters : by month and by country.
I choose a month (January 2016) and a country (France) and I want to calculate the sum of purchases for France in January 2016 divided by the sum of purchases for all countries in January 2016.
| Month | Country | Purchases |
| January 2016 | France | 150 |
| January 2016 | Italy | 100 |
| January 2016 | Belgium | 250 |
Result : 150 / (150 + 100 + 250) = 30 %
How can I do it please ?
Thanks for your help !
Gwendaline
Solved! Go to Solution.
hello @Gwendaline_p
please try with this dax measure.
Insert in a card visual
% =
DIVIDE (
CALCULATE ( SUM ( Table1[Purchases] ) ),
CALCULATE ( SUM ( Table1[Purchases] ), ALL ( Table1 ) ),
0
)
hello @Gwendaline_p
please try with this dax measure.
Insert in a card visual
% =
DIVIDE (
CALCULATE ( SUM ( Table1[Purchases] ) ),
CALCULATE ( SUM ( Table1[Purchases] ), ALL ( Table1 ) ),
0
)
It works perfectly.
Thank you,
Gwendaline
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 51 | |
| 46 | |
| 23 | |
| 19 |
| User | Count |
|---|---|
| 135 | |
| 110 | |
| 50 | |
| 31 | |
| 29 |