Thread: [Solved] Test Field Contents
View Single Post
 
Old 11-13-2020, 02:27 PM
evilside evilside is offline Windows 10 Office 2016
Novice
 
Join Date: Nov 2020
Posts: 3
evilside is on a distinguished road
Default

Quote:
Originally Posted by macropod View Post
The behaviour is by design - each '?' represent exactly one character, but the '*' represents any number of characters. The question is why are you using such a construction to test whether a field is empty, when that should be done with code like:
Field is {IF{REF textFormFieldName}<> " " "not "}empty
A field that contains at least six characters cannot be empty...

Easy, because:


{IF{REF textFormFieldName}<> "" "not "}


...not working. That is the origin of this thread. This trick was useful in my case.
Reply With Quote