Hello,
I am interested in creating a text that shows the start time of time of the next calendar event if that event is within the next 30mins.
Thank you in advance
Aristeidis
Hello,
I am interested in creating a text that shows the start time of time of the next calendar event if that event is within the next 30mins.
Thank you in advance
Aristeidis
Hi! So, the formula should be something like this:
$if(tf(ci(start, 0), M) < 30, df(hh:mm, ci(start, 0)))$
It will write the next calendar event (both all day or not) start time as "hh:mm" if the event happens in less than 30 mins.
Let's break it down to understand it:
Hope it helps!