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: 
rotter
Contributor III
Contributor III

One row with 3 dates based on status

Hi everyone!

I have a log table with a date (Data Atualização LP), status (Cód. Status LP) and protocol (ID Prot).
Based on status I need to create a table with these dates to calculate it's date intervals.

For example:

20220621_Tempos2040.png

 

 

 

 

 

 

 

 


- The image shows only the protocol nº 2040.
- Status=9 is the check-in date;
- Status=5 is the attendance date;
- Status=6 or Status=8 is the final date.

In this case the protocol nº2040 has 3 times (or three lines) to calculate and I don't know how to create this table
Using the min(date) for each status I got the first attendance:

20220621_Tempos2040_2.png

But I need another two rows of the same protocol with the another dates.

20220621_Tempos2040_3.png

Can you help me, please? I attached the qvd.

Thanks in advance.

Labels (1)
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

You need to create another level of grouping to aggregate on

 

temp:
LOAD
    "ID LP",
    "Data Atualização LP",
    "Cód Status LP",
    "ID Operador LP",
    "ID Prot",
    "ID Canal Atendimento"
FROM [lib://AttachedFiles/tb_logprotocolo.qvd]
(qvd);

load *
,if("Cód Status LP"=9,AutoNumber("Data Atualização LP"),if("ID Prot"=peek("ID Prot"),peek('Group'))) as Group
Resident temp
ORder by "ID Prot","Data Atualização LP" ASC;
drop table temp;

 datadata

outputoutput

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

2 Replies
vinieme12
Champion III
Champion III

You need to create another level of grouping to aggregate on

 

temp:
LOAD
    "ID LP",
    "Data Atualização LP",
    "Cód Status LP",
    "ID Operador LP",
    "ID Prot",
    "ID Canal Atendimento"
FROM [lib://AttachedFiles/tb_logprotocolo.qvd]
(qvd);

load *
,if("Cód Status LP"=9,AutoNumber("Data Atualização LP"),if("ID Prot"=peek("ID Prot"),peek('Group'))) as Group
Resident temp
ORder by "ID Prot","Data Atualização LP" ASC;
drop table temp;

 datadata

outputoutput

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
rotter
Contributor III
Contributor III
Author

It worked! 😃

Thank you very much, @vinieme12.