If(Text(Today(), "[$-en-US]ddd", "en-GB") = "Monday" Or "Thursday"
And Text(CCDatePicker.SelectedDate,"[$-en-US]mm/dd/yyyy") = Text(DateAdd(Today(),1),"[$-en-US]dd/mm/yyyy")
And Value(Hour(Now())) > 10,
View, Edit)
I am trying to do the following:
If today is either Monday or Thursday,
Check if date selected by user is equal to tomorrow
and that if the time is past 10am.
Not working, not sure why. Can anyone shine some light on this for me?
Thanks in advance 🙂