KWGT – Need to display the day of the next upcoming event (excluding today and tomorrow)

I’m working on a KWGT widget and I need a formula to display the day of the week (e.g. “Sunday”) of the first upcoming event that happens after tomorrow.

In other words:

I want to exclude today’s and tomorrow’s events.

I only want to display the first event that comes after tomorrow, using something like df(EEEE).

Any ideas on how to structure the logic or what formula to use?

Thanks in advance!

Hi @Alex1 ,

Try this code snippet:

$if(
  df(d,ci(start,0))>df(d,a1d),
  df("EEEE",ci(start,0))
)$

I hope this would help.
:smiling_face::+1:

3 Likes