Hi There
Is there a way to force the entry data user from entry space in between? E,.g A Bc and I want to force enty data ABC i.e. no space and all UPPER CASE
Hi There
Is there a way to force the entry data user from entry space in between? E,.g A Bc and I want to force enty data ABC i.e. no space and all UPPER CASE
This?
AND(
NOT(CONTAINS([_THIS], " ")),
(FIND(UPPER([_THIS]), [_THIS]) = 1)
)
Work perfect
@Steve BRILLIANT!!!