Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Mira2423
Partner - Contributor
Partner - Contributor

Integer Dimension Grouped by (Delivery On Time)

Hi everyone, 

So I would like to calculate the on time delivery and then show in a graph the distribution of this interval.

The image below shows that I used: 

Dimension: =interval([_C_BI_MSEG_39.ActualDT]-[_C_BI_VBAP_10.PreferredDT],'d')

Measure: a count of cases 

What I want in the graph is that the interval is grouped which means: if I have cases where the delivery interval takes -12 days I want to see how many cases takes -12 days. So that the -12 should be grouped and not distributed into 3 buckets. 

Is that possible?

Mira2423_0-1599650155419.png

 

Labels (2)
2 Replies
sunny_talwar

Try this as your dimension

=Floor([_C_BI_MSEG_39.ActualDT] - [_C_BI_VBAP_10.PreferredDT])
Mira2423
Partner - Contributor
Partner - Contributor
Author

Hi Sunny, thank you. It did work. 🙂