Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exclusion on dimension

Hi Experts,

I have a pivot table with dimensions branch name, branch no. and some sales expressions.

there are around 200 branches and i need to exclude some 10 branch codes in the dimensions.

how can i do that.

plss help

1 Solution

Accepted Solutions
sunny_talwar

or

If(not Match([branch no.], 'branchCode1', 'branchCode2', ....), [branch name])



use whichever dimension you want to use for exclusion of branches.

HTH

Best,

Sunny

View solution in original post

4 Replies
sunny_talwar

Try this:


If(not Match([branch name], 'branch1', 'branch2', ....), [branch name])

sunny_talwar

or

If(not Match([branch no.], 'branchCode1', 'branchCode2', ....), [branch name])



use whichever dimension you want to use for exclusion of branches.

HTH

Best,

Sunny

giakoum
Partner - Master II
Partner - Master II

or set up a flag in your reload script so that you don't have it hard-coded in your application expressions

buzzy996
Master II
Master II

soem thing like,

=sum({<branches-={list down all brances whcihevvr u have exclued,like '101','102'..etc}>}sales)