Hi @Anonymous ,
Could you please share more details about the formula you typed within the Items property of the Client ComboBox?
Please consider take a try with the following workaround:
Modify your "Validation" formula as below:
SubmitForm(Form3);;
Set(resetCB, false);;Set(resetCB, true);; /* <-- Add Reset formula here */
Refresh(ClientList);;
Navigate('Success Operation');;
NewForm(Form1);
then set the Reset property of the DataCardValue10 (Client ComboBox) to following:
resetCB
Please consider take a try with above solution, check if the issue is solved.
Based on the needs that you mentioned, I think it is not necessary to navigate to another screen to add new Client option, instead, you could consider type Searck text within the Client ComboBox (DataCardValue10) as new Client Option directly, then when you submit your form data, the typed search text value (new client option) would be saved back to your SP List.
Please make sure the Update property of the Client Data card (which contains the DataCardValue10) in your Edit form to following:
If(
!IsBlank(DataCardValue10.Selected),
DataCardValue10.Selected,
!IsBlank(DataCardValue10.SearchText),
{
Value: DataCardValue10.SearchText
}
)
Best regards,