I have a PowerApp running that has some complicated dropdowns that are working great thanks to help from @RandyHayes
The issue I'm running into now is that when we update an item in the 2nd gallery( taskgallery), it updates the item, then refreshes the app.
Example:
Selected Function = "Employee Experience" - Selected Process = "Change Enablement" … Add to Comments field:

After clicking the Save Icon, the App returns to the default gallery view:

At times the users need to update multiple Tasks that are listed.
The first dropdown(Dropdown_Function) formula is:
Sort(GroupBy( GroupBy( GroupBy( AddColumns(ndworkplan, "txtFunction", Function.Value), "txtFunction", "Subprocess","Milestone_x0020_ID", "Process", "Milestone_x0020_Name", "Task_x0020_ID"),"txtFunction","Process", "Milestones"), "txtFunction", "Processes" ),txtFunction,Ascending)
The 2nd dropdown( Dropdown_Process) formula is: Sort(Dropdown_Function.Selected.Processes,Process,Ascending)
The First Gallery (MilestoneGallery) has items = Dropdown_Process.Selected.Milestones
The 2nd gallery (TaskGallery) has Items = MilestoneGallery.Selected.Task_x0020_ID
and OnSelect = Set(CurrentSelectedITem, ThisItem)
The "Save" Icon has OnSelect = Patch(ndworkplan,CurrentSelectedITem, {Comments: CommentGal.Text}))
and it updates the comments field as expected, but also refreshes the entire view...
So the user is forced to go back through the steps to find the milestone and tasks they want to update.
Is there a way to prevent the App from refreshing after saving one task item?