Hello,
I'd like to ask if there is something wrong in my code in OnSelect property:
Patch(
'EWS Case Data',
LookUp(
'EWS Case Data',
EID = DataCardValue1.Text
),
{
'EWS Case Status': DataCardValue14.Selected.Value,
'Forecasted Date of Attrition': DataCardValue10.SelectedDate
}
);
SubmitForm(InterventionForm);
The idea here is to patch the data to EWS Case Data list wherein (DataCardValue10.SelectedDate, DataCardValue14.Selected.Value) is from a form that will be submitted SubmitForm(InterventionForm);
I just want to patch the data in the row in Case Data with the same Case Number (EID column). There's no error when I'm trying it, but it's not patching the data to the column of a specific row.
TIA