Forum Discussion

reportuser's avatar
reportuser
Helper II
4 years ago
Solved

Creating 15 Minute intervals from Date and Time Column

1. I have a column named,"STATS_DATE" which contains dates and time 2. Made a new column named, "Date" which contains only date from STATS_DATE 3. Made a new column named, "Time" which cont...
  • AlexisOlson's avatar
    AlexisOlson
    4 years ago

    Try formatting this as Time data type:

    15Min_Data = ROUNDDOWN ( 'Table'[Time] * 24 * 60 / 15, 0 ) / ( 24 * 60 / 15 )

     

    You can just use 96 instead of 24 * 60 / 15 since there are 96 fifteen-minute intervals in one day.