0

Condition formula with time

Regarding this code: (The formula was accepted.)

if 'Game Time' > "4:05 pm" then
"Flex"
end

However, it does not return TRUE. Thnak you!!!

1 reply

null
    • Choices_Software_Dean
    • 4 yrs ago
    • Reported - view

    "4:05 pm" is seen as literal text, not time. Try:

    let h := 16;
    let m := 5;
    let t := time(h, m);
    if 'Game Time' > t then "Flex" end

Content aside

  • 4 yrs agoLast active
  • 1Replies
  • 409Views