Hi @NurNina ,
Could you please share more details about the error message within your app?
Based on the issue that you mentioned, it seems to tell that you do not specify the Required field from your data source within the '{}' part of the Patch function.
On your side, please check if you have defined some Required fields in your Accounts data source, if yes, please make sure you have specified them within the '{}' part of your Patch function.
On your side, please modify your formula as below:
Patch(
Accounts,
Defaults(Accounts),
{
RequiredField1: "xxxx",
RequiredField2: "xxxx",
...,
crc82_time: TextInput2.Text
}
)
Best regards,