Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi, i have a test table:
ID Nrb | Country | Scenario | Share |
363331 | Australia | Actual | 1.00 |
363331 | China | Actual | 1.00 |
363331 | Denmark | Actual | 1.00 |
363331 | Indonesia | Actual | 1.00 |
363331 | India | Actual | 1.00 |
363331 | Japan | Actual | 1.00 |
363331 | Canada | Actual | 1.00 |
363331 | Finland | Actual | 1.00 |
363331 | Norway | Actual | 1.00 |
363331 | Singapore | Actual | 1.00 |
363331 | Germany | Actual | 1.00 |
363331 | Spain | Actual | 1.00 |
Total | 1.00 |
I want to have a total share group by those 3 colums like 12
Solved! Go to Solution.
Hi @Anonymous,
You can try to use the following measure formulas, I add a variable with summarize function to aggregate value based on categories and use the iterator function to apply these second aggregations to summary previous results.
formula =
VAR summary =
SUMMARIZE (
ALLSELECTED ( Table ),
[ID Nrb],
[Country],
[Scenario],
"_Share", [Share]
)
RETURN
SUMX ( summary, [_Share] )
Regards,
Xiaoxin Sheng
Hi @Anonymous,
You can try to use the following measure formulas, I add a variable with summarize function to aggregate value based on categories and use the iterator function to apply these second aggregations to summary previous results.
formula =
VAR summary =
SUMMARIZE (
ALLSELECTED ( Table ),
[ID Nrb],
[Country],
[Scenario],
"_Share", [Share]
)
RETURN
SUMX ( summary, [_Share] )
Regards,
Xiaoxin Sheng
@Anonymous
is share column a measure?
if not, when you set share as sum, you should get 12
Proud to be a Super User!
Hi, I forgett mention that Share is a measure
@Anonymous
maybe you can try this
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
85 | |
79 | |
54 | |
39 | |
35 |
User | Count |
---|---|
102 | |
80 | |
48 | |
48 | |
48 |