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

Starts With / Begins With / Contains in QV

Hi all,

I'd like to add a filter to an expression that would exclude all items from a field that start with "Un".

I couldn't find the QV equivalent of starts with, or even contains.

Can the kind members of the community help me out ?

Thanks!

3 Replies
Gysbert_Wassenaar

You can use try the wildmatch function. For example in a calculated dimension: =if(wildmatch(MyField,'Un*', null(), MyField)


talk is cheap, supply exceeds demand
rustyfishbones
Master II
Master II

These videos may help also.

Qlikview IF & WILDMATCH RFB 128 - YouTube

and

Qlikview PICK + WILDMATCH by RFB 129 - YouTube

there are other videos there that contain similar answers

somenathroy
Creator III
Creator III

Use exclude function with set analysis as below:

sum({<name=E({<name={"Un*"}>}name)>}sales)

Regards,

Som