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
WarrenBelz
146,524
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,906
Most Valuable Professional