Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have Table 1 (which lists Group sizes and which ID that group belongs to).
ID | GroupSize |
1 | 10 |
1 | 5 |
1 | 20 |
2 | 25 |
2 | 3 |
I'd like to sum groupsize by ID and insert the result to Table 2 (the ID table) like so:
ID | TotalGroupSize |
1 | 35 |
2 | 28 |
I have a 1 - * relationship from Table 2 -> Table 1.
Solved! Go to Solution.
Hi @nft25 ,
Try this for a new table:
Hi @nft25 ,
Try this for a new table:
Hi @nft25
If the relationship is through ID, you can create a calculated column in Table2 as:
TotalGroupSize = SUM(Table1[GroupSize])
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers
Hi @nft25
You need a calculate to trigger context transition:
TotalGroupSize = CALCULATE(SUM(Table1[GroupSize]))
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
13 | |
11 | |
10 | |
8 | |
6 |
User | Count |
---|---|
13 | |
12 | |
11 | |
9 | |
9 |