Forum Discussion
HubertHubert
3 years agoNew Member
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...
- 3 years ago
if Time.Hour([Date and hour]) < 22 and Time.Hour([Date and hour]) > 8 then "Day" else "Night"
css207
3 years agoFrequent Visitor
if Time.Hour([Date and hour]) < 22 and Time.Hour([Date and hour]) > 8
then "Day"
else "Night"HubertHubert
3 years agoNew Member
Thanks works perfectly love it