Time Check
Current Time
formatDate(dateAdd(now(), prop("Difference"), "hours"), "h:ma ddd")
Difference values above are based on British Summer Time (BST).
Available
if(toNumber(formatDate(dateAdd(now(), prop("Difference"), "hours"), "HHmm")) >= 0800 and toNumber(formatDate(dateAdd(now(), prop("Difference"), "hours"), "HHmm")) <= 1700, "β¦ Available", "")
Update the two 24-hour format times to change the availability range.
Time + Availability
formatDate(dateAdd(now(), prop("Difference"), "hours"), "h:ma ddd") + if(toNumber(formatDate(dateAdd(now(), prop("Difference"), "hours"), "HHmm")) >= 0800 and toNumber(formatDate(dateAdd(now(), prop("Difference"), "hours"), "HHmm")) <= 1700, " β¦ Available", "")
Β