Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Can we use another operator than = in the modifiers of set analysis

Hello,

I want to count items where sourcecodes start with 'WLIG'.

Can we do something like that:

=count({<source_Item LIKE {'$(CodeSource)'}>} Item)

CodeSource is a variable and sourceèitem anditem are fields

Thanks

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try a search expression for your element set:

=count({<source_Item = {"$(CodeSource)*"}>} Item)

Please note the double quotes to indicate a search expression.

View solution in original post

2 Replies
swuehl
MVP
MVP

Try a search expression for your element set:

=count({<source_Item = {"$(CodeSource)*"}>} Item)

Please note the double quotes to indicate a search expression.

Not applicable
Author

Fantastic. Thank you