Hi- I have a simple timesheet table. ClockIN, Clockout, teammate, date.
I have a form with a data table that displays only people who clocked in today -if they forgot to clock out from another day, they need to talk to the manager. This filter solved that fine...
Filter(tSheets, Text(ClockIn, DateTimeFormat.ShortDate) = Text(Today(), DateTimeFormat.ShortDate))
I am having trouble figuring out the syntax on how to add to that filter condition . I only want the data table to show people who have NOT clocked out.
ClockedOut is a date time field, standard, not friendly format.
Thanks for help on this