Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI alll ,
i need to calculate the logic for win rate based on below specification is there any suggestion is much apriciated.
Indicates for new deals the percentage of won deals by dividing number of won deals by the number of won + open deals. The calculation is done for three situations: Snapshot, Rolling 1, Rolling 2.
The calculation requires the following actions to take place:
Note: currently the win rate is only calculated for EMEA region based upon the 1st quote report.
Deal Num | Deal Version | First Quote Date | Status |
1 | 2 | 1-JAN-2014 | Won |
2 | 1 | 1-JAN-2014 | Open |
2 | 1 | 1-JAN-2014 | Won |
3 | 1 | 1-JAN-2014 | Open |
3 | 2 | 1-FEB-2014 | Won |
4 | 1 | 1-JAN-2014 | Open |
4 | 2 | 1-FEB-2014 | Open |
4 | 3 | 1-MRT-2014 | Won |
5 | 1 | 1-FEB-2014 | Open |
5 | 2 | 1-FEB-2014 | Won |
Win Rate for January 2013:
below is the i tried with if condition but it's not giving correct results,
=if( [Snapshot Month Status] ='won' and [Deal Version] = 1, SUM ( {< [Snapshot Month Status] = {'Won'} >} [# Snapshot Month Record] )
/
SUM ( {< [Snapshot Month Status] = {'Won', 'Open'}>} [# Snapshot Month Record] ),if([Snapshot Month Status] = 'won' or [Snapshot Month Status] = 'open' and [Deal Version] <>1,SUM ( {< [Snapshot Month Status] = {'Won'} >} [# Snapshot Month Record] )
/
SUM ( {< [Snapshot Month Status] = {'Won', 'Open'}>} [# Snapshot Month Record] )))
Thanks in Advance,
Gireesh