Skip to main content
Ann Ng (CBI) が「#Formulas」で質問

Hi all,

I am looking for a formula that calculate the win rate based on total value of closed won opportunities. I tried this formula "WON:SUM/CLOSED:SUM" but it is not what I want because "WON:SUM"  is the number of opportunity Won, not the $ value. 

My formula needs to be: Total value of Closed Won / (Total value of Close Won + Total value of Closed Lost).

Thank you 

24 件の回答
  1. Michael Brown (Salesforce) Forum Ambassador
    2023年2月14日 18:26

    Hi Anh, you might need to create a couple of formula fields with logic along the lines of:

     

    1. Closed Won Amount: IF(ISPICKVAL(StageName, "Closed Won"),Amount,0)
    2. Closed Lost Amount: IF(ISPICKVAL(StageName, "Closed Lost"),Amount,0)

    You can then put these fields in your report, summarize them and be able to do a report summary formula with logic along the lines of:

     

    CLOSED_WON_AMOUNT:SUM / (CLOSED_WON_AMOUNT:SUM + CLOSED_LOST_AMOUNT:SUM)

0/9000