I’ll preface this with a “Key” that gives context to my field types and field names.
/Date #1] = “Start Time” Date Field (set to GMT)
bDate #2] = “End Time” Date Field (set to GMT)
MStream URL] = URL Field
I’m trying to make an IF() statement in a formula field that would reveal the oStream URL] if the current point in time (down to minutes or seconds, I don’t care which) is after eDate #1] and before sDate #2]…otherwise, reveal the text “No Stream Available”
I have tried things like this and come up short"
IF(
AND(
IS_AFTER(
NOW(),
{Start Time}
),
IS_BEFORE(
NOW(),
{End Time}
)
),
{Stream URL},
"No Stream Available"
)
Help would be appreciated