Hi@Najwa_Rahal,
Based on the issue that you mentioned, the formula I provided is based on the Patch() you wrote.
Patch() quoting Defaults() does create a new record instead of updating the existing record. If you want to update, please quote Lookup() into Patch(). Please modify your formula as below:
Patch('Scope', Lookup('Scope',ID=ThisItem.ID),{Title:"Super",’Bank Connectivity’:Table({
Value: Checkbox2.Value (You can also replace Checkbox2.Value with Checkbox2.Text depend on your needs)
})
}
)
Ps: ID is a unique value in your SP list, you can replace it with any other primary key in the SP list. For example, if there is only one row in the list, then you can quote this: Lookup('Scope',ID=1). It will update the first row of the records.
Patch('Scope', Lookup('Scope',ID=1),{Title:"Super",’Bank Connectivity’:Table({
Value: Checkbox2.Value (you can replace Checkbox2.Value with Checkbox2.Text)
})
}
)
Last but not the least, if you want to update the column item with the textinput in the Checkbox2, please replace Checkbox2.Value with Checkbox2.Text.
Best Regards,
Qi