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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Filters

Hello Friends

I have 5 units where 4 units are different like A,B,C,D But 5 unit in Z=(A+B+C+D) you can say consolidated

which i have kept in filter

so i want when i click on Z i want to select rest all A,B,C,D but not Z in filter ..

Thanks In Advance

1 Solution

Accepted Solutions
agigliotti
MVP
MVP

you can do something as below in script:

load

BU,

Actual,

Budget,

BU as BU_new

from your_table where BU <> 'E';

concatenate
load distinct

    BU,

    'E' as BU_new

from your_table where BU <> 'E';


and use the new field BU_new in filter.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it

View solution in original post

6 Replies
agigliotti
MVP
MVP

your explanation is not clear.

what's your needs and your expected result ?

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
Anil_Babu_Samineni
MVP
MVP

May be create like?

Only({<FieldName = E(FieldName)>} units)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
anat
Master
Master

Hi Girish,

can you please provide sample data.

Anonymous
Not applicable
Author

BU
Actual
Budget
A1020
B1020
C2010
D3010
E(A+B+C+D)7060

i have many records i have filter where BU is there

but when i select E i want to select A,B,C,D BECAUSE the data is incorrect or u can say they have many more BU but they have not shared but they want E also but when in selection they want E to select but to display data of A,B,C,D in table or bar chart

hope i am clear now

agigliotti
MVP
MVP

you can do something as below in script:

load

BU,

Actual,

Budget,

BU as BU_new

from your_table where BU <> 'E';

concatenate
load distinct

    BU,

    'E' as BU_new

from your_table where BU <> 'E';


and use the new field BU_new in filter.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
anat
Master
Master

Hi Girish,

check @Andrea method is working