I’m try to use AppSheet to show google calendar's schedule acts as a display board showing in-front of the meeting room
I’ve added Google Calendar as a data source, and added a table from Google Calendar with column [Start] schedule start time and [End] schedule end time both in "DateTime" format.
What is the formula if I want to highlight the current schedule with different colour
Solved! Go to Solution.
Add a virtual column to the calendar table with an App formula like this:
IF(
AND(
(NOW() >= [Start]),
(NOW() < [End])
),
"Red",
"Green"
)
User | Count |
---|---|
17 | |
10 | |
7 | |
5 | |
5 |