Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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 @Jabutti
This should do the trick
Account Total =
SUMX(
SUMMARIZE('Table', 'Table'[First Name], 'Table'[Last Name], 'Table'[Account]),
'Table'[Account]
)
Hi @Jabutti
This should do the trick
Account Total =
SUMX(
SUMMARIZE('Table', 'Table'[First Name], 'Table'[Last Name], 'Table'[Account]),
'Table'[Account]
)
Seems to work, thanks!
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.