Now sure how to do this.
Here is my App.
When we click submit, all this information is submitted to the SPO Lists Assignments.
The time is updated with this formula:
DateValue1.SelectedDate +
Time(If(AMPMValue.Selected.Value = "PM",12,0) +Mod(Value(HourValue1.Selected.Value),12),Value(MinuteValue1.Selected.Value),
0
)
This is all working great.
What I would like is for the App to make the exact same update, in a different SPO list.
Engineers.LastCritAssigned
Only if the CaseType is Critical.
I dont think I can do it here, but thought maybe on the Submit button?
I would assume I would need an If statement there, but how do you make the update?

