I have a text field that should only allow either numbers or the character "+" or the character "-".
Eg valid entries are:
12345
97
+
-
Invalid entries are:
+45
-67
12+
A87
I have tried this in the validation rule:
Is Not Null And (Like "*[0-9]*" Or Like "+" Or Like "-")
but it allows -67...