Write it down instead of copy/paste.
You should put it in the Valid if field.
Also replace the dots “…” with a similar CONTAINS line for each of your undesired symbols.
Keep adding as many lines as there are "locked" symbols, one line per symbol.
NOT( OR(
CONTAINS([_This], "@"),
CONTAINS([_This], "#"),
CONTAINS([_This], "$"),
CONTAINS([_This], "%"),
CONTAINS([_This], "&"),
CONTAINS([_This], "/")
))
Read these:
You don't want the user to input symbols, then unfortunately, and strangely enough, you have to list all the unwanted characters.
NOT( OR(
CONTAINS([_This], "symbol-1"),
CONTAINS([_This], "symbol-2"),
...
CONTAINS([_This], "symbol-n")
))
Showing error, Which column i input this function.
.
Write it down instead of copy/paste.
You should put it in the Valid if field.
Also replace the dots “…” with a similar CONTAINS line for each of your undesired symbols.
Thank you. one more last Question,
in this function three symbols are locked. How can I have more symbols?
NOT( OR(
CONTAINS([_This], "symbol-1"),
CONTAINS([_This], "symbol-2"),
CONTAINS([_This], "symbol-n")
))
Keep adding as many lines as there are "locked" symbols, one line per symbol.
NOT( OR(
CONTAINS([_This], "@"),
CONTAINS([_This], "#"),
CONTAINS([_This], "$"),
CONTAINS([_This], "%"),
CONTAINS([_This], "&"),
CONTAINS([_This], "/")
))
Read these:
@Steve Do you know if there are plans to support regular expressions? any hope? Also, if you have a better solution please? Thanks you!
I am unaware of plans to support regular expressions.
User | Count |
---|---|
19 | |
10 | |
7 | |
5 | |
5 |