
Announcements
Hi all,
How can set DisplayMode for the button as below?
DateDiff(Text(Now(), "hh:mm"), ThisItem.FromDateTime, Minutes) < 15 -> hide button
DateDiff(Text(Now(), "hh:mm"), ThisItem.FromDateTime, Minutes) > 15 -> show button
DateDiff(Text(Now(), "hh:mm"), ThisItem.FromDateTime, Minutes) > 30 -> hide button
Thanks.
Hi @kinghnvn ,
Try this on the Visible of the button
With(
{
wMin:
DateDiff(
Now(),
ThisItem.FromDateTime,
Minutes
)
},
wMin > 15 && wMin < 31
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps