Forum Discussion
commited2020
3 years agoFrequent Visitor
SPLIT CALCULATION
Hello everyone. I have the following data table. When a salesrep completes a sale my firm count it as 1 dealpoint But when 2 salesrep are involved each of them splits 1dealpoint/2 so 0.5 each f...
- Anonymous3 years ago
HI commited2020,
You can use the following calculated column formula to get the current sales rep count to calculate the correspond HC(headcount) weight.
Salesrep rate = VAR _length = PATHLENGTH ( SUBSTITUTE ( Table[Sales Rep], "&", "|" ) ) RETURN 1 / _lengthRegards,
Xiaoxin Sheng
Anonymous
3 years agoNot applicable
HI commited2020,
You can use the following calculated column formula to get the current sales rep count to calculate the correspond HC(headcount) weight.
Salesrep rate =
VAR _length =
PATHLENGTH ( SUBSTITUTE ( Table[Sales Rep], "&", "|" ) )
RETURN
1 / _length
Regards,
Xiaoxin Sheng
commited2020
3 years agoFrequent Visitor
Thank u very much it worked!