Forum Discussion

Spotto's avatar
Spotto
Helper IV
3 years ago
Solved

Compare two hours Columns - error

Hello everyone, I have a column in the datetime table that extracts the time and put a column with a fixed time (16:00). I need to compare the two columns and return 1 or 0, but the formula I made is not working.

 

Thanks for the help 🙂

  • Seems to work ok.

     

     

    Table 2 = ADDCOLUMNS(DATATABLE("Column1",DATETIME,{{"24 Feb 2023 14:56:17"}}),"Compare",if(TIMEVALUE([Column1])>TIMEVALUE("16:00:00"),1,0))

    Keep in mind that when no date value is specified a date of 12/30/1899 is assumed which is of course less that 24 Feb 2023.

     

1 Reply

  • Seems to work ok.

     

     

    Table 2 = ADDCOLUMNS(DATATABLE("Column1",DATETIME,{{"24 Feb 2023 14:56:17"}}),"Compare",if(TIMEVALUE([Column1])>TIMEVALUE("16:00:00"),1,0))

    Keep in mind that when no date value is specified a date of 12/30/1899 is assumed which is of course less that 24 Feb 2023.