문제

I would like to have validation on a column that IF you type in the field you have to use 19 letters. But if you leave the field blank you can still save.

Right now I use this:

=IF(LEN([column 1])=19
도움이 되었습니까?

해결책

Try using below formula:

=IF(ISBLANK([column 1]), true, IF(LEN([column 1])=19, true, false)

This will allow users to add either blank values or the text with length of exact 19 characters.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top