Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
jalpashukla
Partner - Contributor III
Partner - Contributor III

Same column with different condition in different sheets

Hello everyone,

I have four sheets in my app which are working as below:

sheet-1: where project status = active, feedback <> 0 , country = india

sheet-2: where project status = active, feedback =0, country = india

sheet-3: where project status=active, feedback <=3, country = india

sheet-4: all data

Sr.no product Project status feedback Country
1 ABC Active 1 India
2 ABC Active 4 India
3 ABC closed 0 Paris
4 ABC not applicable 4 France
5 ABC closed 1 India
6 ABC Active 0 India

If I select "Product"=ABC from any sheet, the result should be visible with respective conditions.

Expected result:

sheet-1:

Sr.no product Project status feedback Country
1 ABC Active 1 India
2 ABC Active 4 India

sheet-2:

Sr.no product Project status feedback Country
6 ABC Active 0 India

 

sheet-3: 

Sr.no product Project status feedback Country
1 ABC Active 1 India

 

@PrashantSangle @avinashelite  @swuehl @kaushiknsolanki @MK_QSL @vikasmahajan @Chanty4u @Anil_Babu_Samineni @Kushal_Chawda  @sunny_talwar 

Thanks

2 Replies
SerhanKaraer
Creator III
Creator III

Hello Jalpashukla,

You can filter model by using a measure and set analysis, which is equal to where condition in your requirement.

For your first sheet, you can use feedback as a measure with expression Sum({<[Project status]={"active"},feedback=-{"0"},Country={"india"}>} feedback) to filter the table.

Similarly,

for second sheet Sum({<[Project status]={"active"},feedback={"0"},Country={"india"}>} feedback)

for third sheet Sum({<[Project status]={"active"},feedback={"<=3"},Country={"india"}>} feedback)

jalpashukla
Partner - Contributor III
Partner - Contributor III
Author

I dont want sum of feedback.. I just want to apply the condition on whole table. If I apply on dimension, the condition becomes part of filter while selecting any value from table.