Hi Experts,
Hopefully an easy one for you.
I have an app and sharepoint list, in the sharepoint list there is a column called Response, when the user presses the submit button, it will patch some information into the record that has been selected. I want it to put the date and time now into the Response column but only if the Response column is blank, if it has a date and time already in it then I don't want it to be overwritten. Is that possible please? Below is my current snippet for patching that column
Patch(TicketingSystem,
'Gallery-Tickets'.Selected,
{
Status:'Dropdown_Status_1'.Selected.Value,
Response: Now(),
Thanks in advance,
Dave