Skip to main content
Olivia Forde (Lifes2good) 님이 #Data Management에 질문했습니다
I want a rule to fire is the record type is A AND if (b OR C is true)
답변 4개
  1. 2014년 10월 16일 오후 12:41

    Hi Olivia. Your syntax would be formatted something like this:

    AND(

    A,

    OR(

    B,

    C

    )

    )

    You'd then need to replace A, B and C with the correct checks. So if we say A is a record type check and if we assume B and C are both checkbox fields, you would have:

    AND(

    RecordType.Name = 'A',,

    OR(

    B,

    C

    )

    )

    If B and C are something other than checkboxes, you may need to use some other functions in those parts. If you let us know what your field names and data types are, we can help further. 

     

     
0/9000