Action Condition

Hi all,

Wondering if it is possible to have a condition on an actions visibility, depending on the current date and time. For example, each day until 2pm this action should be visible to users, after which time the functionality is not accessible. The next day the action should reappear for use and so on. What kind of expression would this require??

I am aware the use of CURRENTDATE() and TIMENOW() may be required, just unsure of the valid inputs to this condition.

Thanks

Solved Solved
0 3 310
1 ACCEPTED SOLUTION

@Sarah_Keown
Below condition will be enough:

TIMENOW() <= "14:00:00"

View solution in original post

3 REPLIES 3

@Sarah_Keown
Below condition will be enough:

TIMENOW() <= "14:00:00"

Brilliant thank you!

@Sarah_Keown
You’re welcome. Provided you have users from different timezones, then below expression will be more efficient to use:

TIME(UTCNOW()) <= "14:00:00"
Top Labels in this Space