Skip to main content
How can I make sure of the following?

 

Lead status set to 'Qualified' only when Rating is either 'Hot' or 'Warm'.

 

Thanks

 

 
2 件の回答
  1. 2016年11月23日 15:11

    Like this:

    AND(

      TEXT(Status) = "Qualified",

      TEXT(Rating) <> "Hot",

    TEXT(Rating) <> "Warm"

    )

0/9000