What is the correct syntax to use a ExcludeChannel("Web Services") with a field validation ??
The validation currently working is:
( ( [<SalesStageId>] = "xxxx-SRFZA" OR [<SalesStageId>] = "xxxx-SRFZ8" OR [<SalesStageId>] = "xxxx-3LJSV6") AND [<CloseDate>] <= Today() ) OR ( ( [<SalesStageId>] <> "xxxx-SRFZA" AND [<SalesStageId>] <> "xxxx-SRFZ8" AND [<SalesStageId>] <> "xxxx-3LJSV6") AND [<CloseDate>] >= Today() )
Since the error message generates on a FASLE condition, the above needs to be true. How do I add the ExcludeChannel("Web Services") piece?