After activating the newly updated analysis engine in my Power Apps application, this piece of code stopped working:
// Set variables for UT; Car and Report_ID_Config_FC
Set(VarFilterUT; Liste_UT.Selected.Value);;
Set(VarFilterCar; List_Car.Selected.Value);;
Set(VarFilterConfigFC; Gallery3_1.Selected.Report_ID_Config_FC);;
If(
IsEmpty(Filter(BDD_Ecran_FC1; Report_ID_Config_FC = VarFilterConfigFC && UT_Client = VarFilterUT && Car = VarFilterCar));
SubmitForm(Form8); ResetForm(Form8)
);;
SubmitForm(Form7);; ResetForm(Form7);;
(although it worked properly before). How can I correct this problem?