Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
matteogm
Partner - Contributor III
Partner - Contributor III

Distinct dimension in grid chart

Hi everybody,

if I have a data table like this:

DAY,        HOUR,       VALUES
01/01/2013, 07:00, 12

01/01/2013, 07:30, 18

01/01/2013, 08:00, 115

01/01/2013, 08:30, 82

01/01/2013, 09:00, 91

....

02/01/2013, 07:00, 27

02/01/2013, 07:30, 79

02/01/2013, 08:00, 87

02/01/2013, 08:30, 12

How can I create a grid chart with DAY and HOUR dimensions, with every distinct DAY displayed only once and not repeated??1.png

I can not aggregate the distinct values on the chart.

Should be a basic question.

Thanks in advance.

Matteo

1 Solution

Accepted Solutions
Nicole-Smith

If your data matches the example data in your post, it should automatically group them (see attached).

I'm guessing your data isn't the same as your example and that you have a datetime instead of just a date.  Try changing your dimension to:

daystart(DAY)

which should cause all the datetimes for that day to be the same.

View solution in original post

2 Replies
Nicole-Smith

If your data matches the example data in your post, it should automatically group them (see attached).

I'm guessing your data isn't the same as your example and that you have a datetime instead of just a date.  Try changing your dimension to:

daystart(DAY)

which should cause all the datetimes for that day to be the same.

matteogm
Partner - Contributor III
Partner - Contributor III
Author

Thanks Nicole,

actually data come from an excel sheet, DAY is displayed as in the example (format DD/MM/YYYY).

Even if I add in the script date# function, days are not grouped. (date#(DAY,'DD/MM/YYYY')).

daystart(DAY) in dimension solves the problem!

Thanks.

Matteo