Forum Discussion
MPICKETT
7 years agoFrequent Visitor
Identify Duplicate with the Highest Value
Hello All - I am attempting to use a calculated column to identify the duplicate rows with the highest value. I know how to do this in Excel, using the COUNTIFS function, however, I have been strugg...
- 7 years ago
Hi MPICKETT,
Would this work?
Driver Choice = IF ( CALCULATE ( MAX ( 'Driver Relationship Table'[Stops per Week] ), ALLEXCEPT ( 'Driver Relationship Table', 'Driver Relationship Table'[Year.Wk], 'Driver Relationship Table'[DriverName] ) ) = 'Driver Relationship Table'[Stops per Week], 1, 0 )
Best,
Bekah
BekahLoSurdo
7 years agoResolver IV
Hi MPICKETT,
Would this work?
Driver Choice = IF ( CALCULATE ( MAX ( 'Driver Relationship Table'[Stops per Week] ), ALLEXCEPT ( 'Driver Relationship Table', 'Driver Relationship Table'[Year.Wk], 'Driver Relationship Table'[DriverName] ) ) = 'Driver Relationship Table'[Stops per Week], 1, 0 )
Best,
Bekah
- MPICKETT7 years agoFrequent Visitor
I knew I was overcomplicating things. That did the trick!
Thank you so much Bekah!