Hello! I have posted this question before, but after a month more experience with powerapps, I want to address some issues I am having with this.
The goal is to populate a clock in button when clock out was the last button pressed OR when there is no records for the current day.
In my previous fix for this it worked intermittently. Randomly the clock in button will not work as expected, meaning it won't show up after clocking out, leaving the app, and reopening the app. I'd like to find a solution that will work consistently.
I was trying to do something like this, but it is showing that I have a table where it's expecting a Boolean. This is on the Visible property of the clock in button. Anyone have any suggestions? For context TimeTracker is a sharepoint list. Title is the users email address.
If(Filter(TimeTracker, UpdatedActivityDateTime=Today(), glbUser=Title), IsBlank('Time Out'), true, false)