Nov 20, 2019 06:27 AM
A kind of Word-Blacklist : test1,test 2, test3, test4
and if question if its true then markt the formfield with the word Error
how can i do that?
Solved! Go to Solution.
Nov 23, 2019 10:39 AM
IF(OR(FIND({Word1}, {Field}), FIND({Word2}, {Field})), 'There is at least a word')
Nov 21, 2019 12:00 AM
You can make a Formula with an IF function, using an OR function to join several checks, using FIND to find those words.
Nov 21, 2019 01:41 AM
can you write a short example?
Nov 23, 2019 10:39 AM
IF(OR(FIND({Word1}, {Field}), FIND({Word2}, {Field})), 'There is at least a word')