Forum Discussion

HubertHubert's avatar
HubertHubert
New Member
3 years ago
Solved

Adding conditional column

Hi, I'm trying to add a column with a condition in it, here's the code: if( (Time.Hour([Date and hour]) < 22 and Time.Hour([Date and hour]) > ๐Ÿ˜Ž then "Day" else "Night") But everything im gettin...
  • css207's avatar
    3 years ago
    if Time.Hour([Date and hour]) < 22 and Time.Hour([Date and hour]) > 8
    then "Day"
    else "Night"