Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
 
					
				
		
Let's say I have a column called First Name and column called Last Name. The name combo always means the same person, but it can appear on table multiple times. There's also the Account column, which is always the same for the name combo. How would I create a measure that sums the account while calculating the same name combo's account only once?
| First Name | Last Name | Account | 
| Billy | Curtis | 30 000 | 
| Billy | Johnson | 15 000 | 
| Rachel | Thompson | 20 000 | 
| Rachel | Thompson | 20 000 | 
| Billy | Curtis | 30 000 | 
| Total: 65 000 | 
Solved! Go to Solution.
Hi @Anonymous
This should do the trick
Account Total = 
SUMX(
    SUMMARIZE('Table', 'Table'[First Name], 'Table'[Last Name], 'Table'[Account]),
    'Table'[Account]
)
Hi @Anonymous
This should do the trick
Account Total = 
SUMX(
    SUMMARIZE('Table', 'Table'[First Name], 'Table'[Last Name], 'Table'[Account]),
    'Table'[Account]
)
Seems to work, thanks!
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 14 | |
| 11 | |
| 10 | |
| 9 |