Appsheet

Let me ask you a question.
I would like to have a column in Appsheet populated with initial values with conditions split by time.
What kind of expression should I enter in the INITIAL VALUE column?
I want to set the following condition with reference to the current time.
00:00~7:59 B
8:00~16:59 A
17:00~23:59 B

I have set the time zone in Japan.
Thank you in advance.

Solved Solved
0 1 101
  • UX
1 ACCEPTED SOLUTION

timenow() < "14:04:00" <- this is TRUE if the current time is 14:03:59 and earlier on any day.

You can combine IF(), AND() and comparison operators(<,>,<=,>=) to construct an expression you want.

View solution in original post

1 REPLY 1

timenow() < "14:04:00" <- this is TRUE if the current time is 14:03:59 and earlier on any day.

You can combine IF(), AND() and comparison operators(<,>,<=,>=) to construct an expression you want.

Top Labels in this Space