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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to include only one value in a dimension

Hello Everyone

i have one requirment in which i want to exclude some values from the dimesnion. Let say i have one dimesnion called Name . In the Name there are value like Mark, Eric, Shaun and Jack. So my requirment is that i should write formula in such a way that it should only include Jack . I am new to qlikview. Any help would be highly appreciated

Regards

Lokender

2 Replies
ychaitanya
Creator III
Creator III

you can use something like this.

Wildmatch(Fieldname,'*Search Substring*')

ex : if(Wildmatch(Name,'*Jack*')>0,Name) as Expression in your listbox or field derivation

Digvijay_Singh

Where exactly you are trying this?

If it is in the measure expression  - you may do something like this -

Sum({<Name={'Jack'}>}Value)

It will do sum for the Name='Jack' only.