Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Expression excluding what contains "x"

Hello

I know how to exclude ítems that it is ok and works

sum({$<[Color]={'*'}-{'Red','Blue'}>}

But if i want to exclude for example the ones that contains a "e". I do not know why this formula is not working in the expression.

Anybody knos why or another way to do it

sum({$<[Color]={'*'}-wildmatch(Color,'*e*')>}

Thanks

Belén

1 Solution

Accepted Solutions
luciancotea
Specialist
Specialist

sum({$<[Color]={"*"}-{"*e*"}>} ...

View solution in original post

4 Replies
luciancotea
Specialist
Specialist

sum({$<[Color]={"*"}-{"*e*"}>} ...

mukesh24
Partner - Creator III
Partner - Creator III

Hi u can use following:-

sum({<[Color]={"*"}-{"*e*"}>}

Anonymous
Not applicable
Author

Hi

Try

sum({$<[Color] -={'*e*')>} .....

-= is equavalent of not equal to sign

praveenak
Partner - Contributor II
Partner - Contributor II

Hi

Use

sum({<[Color]={'*'}>-<[Color]={'*e*'}>})