cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
commited2020
Frequent 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 for example(Row 6 "KEVIN & JOHN")

And if 3 salesrep are involved each gets 1/3=0.33 (Row 9 "BILL & JOHN & ROBERT")

 

I want powerbi to calculate the dealpoints for each salesrep so i can include them in my dashboard.

 

The commisison varies between each rep but it is not relatable to the dealpoints.

Thanks!

 

bi.png

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Thank u very much it worked!

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors