1st column is system timestamp.
2nd column: Calculated field 'DateTime Rounded Minutes' using the formula :
DATETIME(INT ([DateTime]) + (Round( FLOAT([DateTime])%1*1440 ) /1440))
I'm getting the following mismatch. Please help to fix this.
3 answers
You can do it this way:
DATETRUNC("minute",[DateTime])
+
IF DATEPART("second",[DateTime])>=30 THEN
1/1440
ELSE
0
END
=30 THEN 1/1440ELSE 0 END Hope this helps." style="display: block;" />
Hope this helps.