Trying to figure out a method to hide a button on a screen after a certain time of day. I can't seem to find a function to do this. I essentailly want to say if Now() is greater than 4:30, don't show this button.
Obviously I can use a conditional statement to set the condition, however, I don't see any way to compare the "Current Date/Time" with a fixed time. (4:30). I do see that I can explicitly name the Date/time, but it would then fix the date.
Bottom line is that I need to hide a button after 4:30 every day. However, it doesn't seem like I can do anything other than an explicit comparison of a fixed Day.
Can anyone assist? Thanks.