Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I would like to validate a list item so that if one field is true, then another must be completed. If the first one is false, then it can be ignored.

=(([Start Deferment]="Specific Date") AND [Start Deferment Date] > TODAY()) OR ([Start Deferment]="Next Payment")

This gives an error, so I am guessing my syntax is incorrect?

share|improve this question

1 Answer

It appears the validation formulae are similar to Excel:

=OR(AND([Start Deferment]="Specific Date",[Start Deferment Date]>TODAY()),[Start Deferment]="Next Payment")

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.