I have a simple check in check out system as part of a bigger app.
Each user can check themselves in and out with buttons. Check in adds a row with their own identifier, and adds a date/time stamp to a check in column. On their own screen they will only see their own list of check ins and can check themselves out (which simply adds a date/time stamp to the check out column. It is not locked to row ID etc as there is nothing personal in this list, so I am simply filtering by user and whether there are any rows without a checkout stamp.
I have an Admin account who can see all current check ins and at the moment they have to go to each check in and check them out individually.
It would be useful to be able to tick each checkin listed and then press a “check out selected” button, or failing that a simple “check out all button” which would simply bulk add the date/time stamp to every item in the list.
I am sure it is fairly simple, but with everything else going on in the app this one has me stumped at the moment. Appreciate any help