Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have following table that lists :
Key | Date | Duration | Total | Utlization |
1 | 06/26/2013 | 0:26:00 | 0:50:00 | 52% |
2 | 06/26/2013 | 0:26:00 | 0:50:00 | 52% |
3 | 06/26/2013 | 0:26:00 | 0:50:00 | 52% |
4 | 06/26/2013 | 0:25:00 | 0:50:00 | 50% |
5 | 06/26/2013 | 0:36:00 | 0:50:00 | 72% |
6 | 06/26/2013 | 0:26:00 | 0:50:00 | 52% |
7 | 06/26/2013 | 0:26:00 | 0:50:00 | 52% |
1 | 06/27/2013 | 2:56:00 | 10:47:00 | 27% |
2 | 06/27/2013 | 2:55:00 | 10:47:00 | 27% |
3 | 06/27/2013 | 1:40:00 | 10:47:00 | 15% |
4 | 06/27/2013 | 1:40:00 | 10:47:00 | 15% |
5 | 06/27/2013 | 2:05:00 | 10:47:00 | 19% |
6 | 06/27/2013 | 1:40:00 | 10:47:00 | 15% |
7 | 06/27/2013 | 2:55:00 | 10:47:00 | 27% |
I created following bar chart:
The chart shows the Utilization across Two days for each Key.
Dimensions: Key and Date
Expression: Utilization
I want to show "one" bar that is the average Utilization across two or more days based on filter selection for each Key. How can I do that? Seems simple but the plot does not work?
Thanks
Remove Date as dimension and use avg(Utilization) as expression.
Remove Date as dimension and use avg(Utilization) as expression.
It works. Thanks.