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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exclude Value(s) From Dimension

Hi

I have a bar chart based on one field that contains a default value that has no meaning in the chart but is needed elsewhere in the model.  How can I exclude it? I've tried using <> 'textValue' as a calculated dimension with no joy ... Do I need to create a separate field in the load script?

Cheers

Geoff

Labels (1)
1 Solution

Accepted Solutions
whiteline
Master II
Master II

It depends on version of QlikView that you're using.

View solution in original post

6 Replies
whiteline
Master II
Master II

=aggr(if([YourDimension]<>'UndesieredValue', [YourDimension], null(), [YourDimension])

Not applicable
Author

Hi

Don't think I need the aggr but sorting the syntax to give me:

 

= If([cConsultant] <>'H9999999',[cConsultant], null())

Seems to do the trick.

Many thanks.

Geoff

Not applicable
Author

Hi

Don't think I need the aggr but sorting the syntax to give me:

 

= If([cConsultant] <>'H9999999',[cConsultant], null())

Seems to do the trick.

Many thanks.

Geoff

whiteline
Master II
Master II

It depends on version of QlikView that you're using.

Not applicable
Author

Hi

Ah... Using V11.0 SR1, thanks again.

Cheers

Geoff

felcar2013
Partner - Creator III
Partner - Creator III

hi

if we have a list of values? i tried with "or" or just "commas", did not work.