I created a SPO List to use as a data source for a Time Clock power app - data source is called "Time Entry". My unique identifier is the Title column where I combined current user and now() data. I also have a Shift Start column, Break Start, Break End and Shift End. The "Start Shift" button is working perfectly to create the new row. However, I've tried using multiple combinations of patch and lookup without successfully updating the break start, break end and shift end columns of the existing row. I am attempting to do this via button push in the app. Here are some examples of things I've tried so far. Hoping someone might be able to help!
Patch('Time Entry', default('Time Entry'), LookUp('Time Entry',Title = DataCardValue10.Text), {Now()})
LookUp('Time Entry',Title = DataCardValue10.Text); Patch('Time Entry', Defaults('Time Entry'),{'Break Start': Now()})LookUp('Time Entry',"Title" = DataCardValue11.Text,{'Break Start':Now()})
Patch('Time Entry', LookUp('Time Entry',"Title" = DataCardValue9.Text), {'Break Start':Now()})