Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 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.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
126 | |
78 | |
78 | |
59 | |
51 |
User | Count |
---|---|
165 | |
83 | |
68 | |
68 | |
59 |