Skip to main content
John Angerami (Voray) 님이 #Sales And Marketing에 질문했습니다
I am trying to write a scoring formula text that grades activities events where

 

Type = Discovery Call 

 

Status = Completed

 

Then the grade will be calculated based on a number field.

 

I currently have this formula but not sure how to add that Type and Status must equal specific values

 

IF(Discovery_Call_Score__c <50, "D", 

 

IF(Discovery_Call_Score__c >60 && Discovery_Call_Score__c<49, "C",

 

IF(Discovery_Call_Score__c >59 && Discovery_Call_Score__c<80, "B",

 

IF(Discovery_Call_Score__c >79, "A",null))))

 

 
답변 29개
  1. 2018년 1월 2일 오후 7:41

    Give this a formula try :

    IF(

    AND(TEXT(Type) = "Discovery Call",TEXT(Status)= "Completed"),

    IF(Discovery_Call_Score__c > 79, "A",

    IF(Discovery_Call_Score__c > 59 ,"B",

    IF(Discovery_Call_Score__c > 49, "C",

    "D"))),NULL)

     

     
0/9000