Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
In a graph I want to display only the values per hour not by minute (as DATUMTIJD) has an inteval per minute
So how should this expression looks?
If DATUMTIJD is a timestamp you could use hour(DATUMTIJD) to get the hour of the timestamp. Or maybe you need to 'truncate' the minutes. In that case use floor(DATUMTIJD, 1/24) to round down or ceil(DATUMTIJD, 1/24) to round up.
If DATUMTIJD is a timestamp you could use hour(DATUMTIJD) to get the hour of the timestamp. Or maybe you need to 'truncate' the minutes. In that case use floor(DATUMTIJD, 1/24) to round down or ceil(DATUMTIJD, 1/24) to round up.
works fine thanks a lot!!!