Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
First at all thanks for your time.
Ok, let's go ...
Let me show you the data set I'm playing with:
1- Script Editor:
[Steps]:
LOAD * INLINE
[
ID,Step,Quantity
1,STEP1,1
1,STEP2,1
1,STEP3,1
2,STEP2,1
2,STEP3,1
3,STEP3,1
](delimiter is ',');
2- My Goal: My goal is to put this data in one table and show for each ID the steps it passed. For doing that I created several measure master items (one for each step):
STEP1 --> SUM({<[Step]={STEP1}>}[Quantity])
STEP2 --> SUM({<[Step]={STEP2}>}[Quantity])
STEP3 --> SUM({<[Step]={STEP3}>}[Quantity])
3- Current Result:
4- Desired Result: I'd like to show all steps quantities when STEP1, STEP2 and STEP3 are = 1. I mean, the possibility to show IDs which have passed for each STEP. In Excel it would be easy to apply some filter to columns "STEP1 to 3" and show all rows where STEP1 to 3 are equal to 1 but with QLIK SENSE I can't apply this kind of filters using measures.
I know, I can do it via SQL applying a LEFT JOIN approach but I'd like to know if it's possible to do it in a different way.
Thanks
@LDR try below expression
=sum({<ID={"=count(distinct Step) = count(distinct total Step)"}>}Quantity)
Ok, with your formula I can detect which IDs have passed for all steps but, how can I apply this filter to the table and show all STEPs for these IDs?
Thanks
@LDR you can add Step as dimension so you will get all Steps as well
@LDR I think you are asking for something related to what Qlik refers to (in QlikView) as "AND-mode".
Maybe this post on Generating AND, OR , NOT selection logic in Qlik Sense can be of help to you.