hello all,
I need to make a calculation based on the value of the time on one column in my report. As an example it is "if time is greater than 12:30 then "it is afternoon already". MY problem is the minutes...i need not only to specify the hour but also the minutes...i have this code
if (row["dataCriacao"].getHours() < "24") "Turno 3";
if (row["dataCriacao"].getHours() < "16") "Turno 2";
if (row["dataCriacao"].getHours() < "8") "Turno 1";
Can you give me a hand here??

Thank you
Nuno