4 respostas
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.