Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
I have a table with three columns, Job Number, Grand Total, and Account Name:
What would be the Dax expression to only calculate the sum grandtotal for a unique job? For example, KOL16800004, should only be $17600. Thanks!
Solved! Go to Solution.
In this scenario, you can first create a column to identify the duplicate rows.
DuplicateRows = CALCULATE ( COUNTROWS ( Table1 ), FILTER ( Table1, EARLIER ( Table1[Job Number] ) = Table1[Job Number] && EARLIER ( Table1[Grand Total] ) = Table1[Grand Total] && EARLIER ( Table1[Account Name] ) = Table1[Account Name] ) )
Then create a measure to get the grand total.
Total = IF ( MAX ( Table1[DuplicateRows] ) > 1, MAX ( Table1[Grand Total] ), SUM ( Table1[Grand Total] ) )
Best Regards,
Herbert
In this scenario, you can first create a column to identify the duplicate rows.
DuplicateRows = CALCULATE ( COUNTROWS ( Table1 ), FILTER ( Table1, EARLIER ( Table1[Job Number] ) = Table1[Job Number] && EARLIER ( Table1[Grand Total] ) = Table1[Grand Total] && EARLIER ( Table1[Account Name] ) = Table1[Account Name] ) )
Then create a measure to get the grand total.
Total = IF ( MAX ( Table1[DuplicateRows] ) > 1, MAX ( Table1[Grand Total] ), SUM ( Table1[Grand Total] ) )
Best Regards,
Herbert
@v-haibl-msft Do you have to add all the columns in the expression? I have a similar situation but with many more columns.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
112 | |
105 | |
95 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |