Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
beginnertom
Contributor III
Contributor III

Based on one of them status to calculate other status

Hi everyone,

I have a dataset as below:

i would like to based on each serial no production status to calculate Model A status,

For example, For model A, since 4 of them is under run/ done status, i want to create a new field(model status) to claims Model A is 'paritally run'

if any status of model its serial no under run/done status, model status = 'partial run', 

if all status of model its serial no under stop status, model status = 'stop',

if all of model its serial no under done status, model status = 'done'

So  the output of model A and B model status are ' partial run and 'stop' respectively.

Based on model A and B model status, product line was calculated as 'partial run'

Is it possible to using qlikview to achieve this?Thz if anyone can give me an idea to tackle this problem.

Product LineModelSerial NoStatus
Line APhone A1Run
Line APhone A2Done
Line APhone A3Done
Line APhone A4Run
Line APhone A5Run
Line APhone A6Stop
Line APhone B7Stop
Line APhone B8Stop
Line APhone B9Stop
Line APhone B10Stop
Line APhone B11Stop
Line APhone B12Stop
1 Solution

Accepted Solutions
Sergey_Shuklin
Specialist
Specialist

Hello!

You can solve this task with script improvement:

model_status.png

Where "base_table" is your original table from xlsx.

You need to do double join with concatenation result check groupped by Model field at first step and Product Line field at second step.

Example file is attached below.

View solution in original post

3 Replies
Sergey_Shuklin
Specialist
Specialist

Hello!

You can solve this task with script improvement:

model_status.png

Where "base_table" is your original table from xlsx.

You need to do double join with concatenation result check groupped by Model field at first step and Product Line field at second step.

Example file is attached below.

beginnertom
Contributor III
Contributor III
Author

Thanks,I will try it.
beginnertom
Contributor III
Contributor III
Author

Thz a lot it solve problem, and you script is easy to read and logical.thz!