Domanda

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
È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top