문제

Pardon this newbie question on SharePoint list validation, I have been researching this for days

  1. SharePoint 2013

  2. SharePoint LIST validation since you cannot compare two fields in FIELD validation

  3. Two fields in same list:

field#1 -- Employee's Email Address

field#2 -- Vendor Contact Name

  1. Validation - If both fields contain data then don't allow the form to save. Basically if either field is blank allow the form to save.
도움이 되었습니까?

해결책

Try Using below formula :

=IF(OR(ISBLANK([Column1]), ISBLANK([Column2])), true, false) 
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top