Hello Power Community,
Noob here. My app has more unsuccessful versions than the Oxford dictionary has words. Well, close anyway. There is not much out there to help with a timekeeping app. That didn’t stop me. In a nutshell, I am working from OneDrive to update an excel sheet. The data is pre-populated daily. It will utilize a camera or a scanner to read a barcode (EMPLOYEE_ID). Successful testing is sporadic. My long-winded goal is to use an input such as a toggle, radio buttons or a dropdown choice. It would represent in and out. Currently they each have their own page because of an iffy IF statement. One thing to really help get the ball rolling is this:
I want to be able to update the selected item that is narrowed by the ID for the IN time currently
Scanner trigger
Patch(tblData,First(Filter(tblData,EMPLOYEE_ID=TextSearchBox1.Text)),{IN: Now()})
Camera trigger
Patch(tblData,First(Filter(tblData, EMPLOYEE_ID = BarcodeScanner1)),{IN: Label2});Reset(TextSearchBox1);SetFocus(TextSearchBox1)
(It doesn’t like the equal sign on this one and Label2 is the time result)
How can I word it to allow the value of toggle1 to choose the IN or OUT record to be updated this record only?
A manual scan shows the barcode in the search box and isolates the lone record. A trigger is used to update the record. Lastly critique and correct my verbiage for “This record”. It works on and off and I would like something more hearty. I have included a timer to allow thinking time before resetting which helps.
Much thanks!