Forum Discussion
sjacob
2 years agoFrequent Visitor
DAX Calculation for Unique Sum
Hello, I would like to get some help and support with the following DAX I've created: Direct Group Time = SUMX( FILTER('crdb contact', NOT(ISBLANK('crdb contact'[ContactGroupID])) && 'crdb...
parry2k
2 years agoSuper User
sjacob try this measure:
Measure 3 = SUMX ( SUMMARIZE ( MyTable2, MyTable2[ContactGroupID], MyTable2[Time1], MyTable2[Time2] ), [Time1] + [Time2] ) sjacob
2 years agoFrequent Visitor
Thank you for your response. I tried this measure, but it still sums all the rows from this table. I want to be able to sum a unique ContactGroupID, so like the first row of each ContactGroupID.