Is there an option for Formula's similar to the MySQL LIKE statement available or even a work around?
Announcement
Collapse
No announcement yet.
Formula LIKE statement?
Collapse
X
-
-
here - with quotes (' ') means some string, without - field name
string\contains(video, public) - field video contains a field public
string\contains(video, 'public') - field video contains a word public
Comment
-
I noticed that it is case sensitive, is there a way to make it not case sensitive?
Code:ifThen ( client == 'COMCAST' && term == '24 Mo', commission = ifThenElse ( voice == 'New', ( ccblmrc + ccfflmrc + ccmlmrc - discountvoice ) * 0.5, 0 ) + ifThenElse ( internet == 'New', (ccimrc - discountinternet) * 0.5, 0 ) + ifThenElse ( video == 'New' && ( string \ CONTAINS (ccbcvideo, 'private') ), (ccvmrc - discountvideo) * 0.5, 0 ) + ifThenElse ( video == 'New' && ( string \ CONTAINS (ccbcvideo, 'public') ), (ccvmrc - discountvideo) * 1.5, 0 ) + ifThenElse ( phonesystemcommission != NULL, phonesystemcommission, 0 ) );
Last edited by khopper; 07-20-2018, 10:13 PM.
Comment
Comment