Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Percent of column calculation

I'm trying to do a win/loss analysis and want to figure out the best way to determine wins, loss, DQ.

The data looks like:

Competitor Name     Status     Distinct (Opp ID)      Win/Loss rates

Comp A                    Won             673                               %

Comp A                    Lost              221                               %

Comp A                    DQ               425                                %

I assume the best way is to create an if/then expression that returns won, lost or dq but I don't know how to have it show as a percentage vs. a #.

Any ideas?

2 Replies
ogster1974
Partner - Master II
Partner - Master II

Do a pie chart on status counting the distinct number of opportunities which a filter on competitor name should give you a nice start.

a KPI on count(<Status={'Won'}> [Opp Id]) / count([Opp Id]) should give you the win rate with formatting as a percentage applied.

JonnyPoole
Employee
Employee

a few ways but the TOTAL method is pretty easy:

count( Distinct [OppID])

/

count( TOTAL  Distinct [OppID])