Forum Discussion
Navaneeth_
3 years agoRegular Visitor
RANKX
I have a Email Interactions table which is at Interaction_ID and SDR_NAME(Sales rep name) level. I want to rank them based on a score (A measure), I'm using the below formula, using ALL() for the ran...
tamerj1
Community Champion
3 years agoHi Navaneeth_
Please try
Email Rank =
RANKX (
ALL ( 'SALESLOFT_DETAILS'[SDR_NAME] ),
CALCULATE ( [Email_Score] + [Email_Reply_Score], ALL ( 'Table'[Date] ) ) / 2,
,
DESC,
DENSE
)