Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anku
Creator
Creator

Request Age Calculation

Hi all,

I need your help.

I have a data which consists request id movements into different departments and respective Date.

Sample:

Anku_2-1631356369170.png

 

 

I want to calculate tenure of each unique request id but not overall, instead the tenure that unique id spent at last department.

 

Output:

Anku_3-1631356369173.png

 

I am new to Qlik-sense, please help me how to do it in Qlik-sense.

Thank you!

1 Solution

Accepted Solutions
Kushal_Chawda

@Anku  try below

data:
Load [Request ID],
     Department,
     Date
FROM Table;

Final:
Load *,
     if(([Request ID]=Previous([Request ID]) and Department<>Previous(Department))
     or [Request ID]<>Previous([Request ID]),1,0) as dept_change_flag
Resident data
Order by [Request ID],Date;

Drop Table data;

Left Join(Final)
Load [Request ID],
     max(Date) as Date,
     1 as latest_dept_change_flag
Resident Final
Where dept_change_flag=1
Group by [Request ID];

drop field dept_change_flag;

 

Now, create a table with below dimensions and measure

Dimension:

1) Request ID

2) Department

Measure: (Age)

=max(Date)- min({<latest_dept_change_flag={1}>}Date)

Note:  Uncheck "Include zero values" option from properties of table in Add-on

View solution in original post

10 Replies
Digvijay_Singh

Something like this may be - 

Digvijay_Singh_0-1631369820194.png

 

Kushal_Chawda

@Anku  try below. make sure that your Date field is in proper date format.

 

 

data:
Load [Request ID],
     Department,
     Date
FROM Table;

Left Join(data)
Load [Request ID],
     FirstSortedValue(DISTINCT Department,-Date) as Department,
     1 as Latest_Dept_Flag
Resident data
Group by [Request ID];

 

 

 

Now, create a table with below dimensions and measure

Dimension:

1) Request ID

2) Department

Measure: (Age)

=max({<Latest_Dept_Flag={1}>}Date)- min({<Latest_Dept_Flag={1}>}Date)

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

How about a table chart with:

Dimensions:
[Request ID]
Department

Measure:

if(Department = FirstSortedValue(Total<[Request ID]> Department, -Date), Max(Date) - Min(Date))

Uncheck "Include zero values" in Add-Ons, Data handling.

-Rob

Anku
Creator
Creator
Author

@Kushal_Chawda thanks mate, it's working. 

one more favour I need please, as the request is moving between the departments, there's a possibility that it may end up at the dept which it may have been earlier as well. So in this case, max date is correct but not min date. Is there any way round to get the min date of the latest dept. Thank you for responding :).

Anku
Creator
Creator
Author

@rwunderlich thank you sir. It's helpful.

I have a scenario added to above question.

as the request is moving between the departments, there's a possibility that it may end up at the dept which it may have been earlier as well. So in this case, max date is correct but not min date. Is there any way round to get the min date of the latest dept only. Thank you.

Anku
Creator
Creator
Author

Thanks for sharing.

Kushal_Chawda

@Anku  could you share one example?

Anku
Creator
Creator
Author

@Kushal_Chawda  like

Anku_0-1631446612850.png

refer request id2, desired output - 

Anku_1-1631446746472.png

Output I am getting:

Anku_3-1631446878763.png

Thanks!

 

 

Kushal_Chawda

@Anku  try below

data:
Load [Request ID],
     Department,
     Date
FROM Table;

Final:
Load *,
     if(([Request ID]=Previous([Request ID]) and Department<>Previous(Department))
     or [Request ID]<>Previous([Request ID]),1,0) as dept_change_flag
Resident data
Order by [Request ID],Date;

Drop Table data;

Left Join(Final)
Load [Request ID],
     max(Date) as Date,
     1 as latest_dept_change_flag
Resident Final
Where dept_change_flag=1
Group by [Request ID];

drop field dept_change_flag;

 

Now, create a table with below dimensions and measure

Dimension:

1) Request ID

2) Department

Measure: (Age)

=max(Date)- min({<latest_dept_change_flag={1}>}Date)

Note:  Uncheck "Include zero values" option from properties of table in Add-on