All of the screens/ forms associated with this app are writing to the correct row except one. this only happens when the form mode is in new
Prior Screen Form (this one writes to the correct row):
Form2
OnSuccess: Navigate(scrForm1_1,ScreenTransition.None)
DefaultMode: If(varFormMode="view",FormMode.View,FormMode.Edit)
Item: If(varFormMode = "edit", Gallery_Main.Selected, LookUp('[dbo].[App_PAFNewProj_Main]', ID = varRecord.ID))
NextButton OnSelect: ResetForm(Form1_1)
Problem Screen:
Form1_1
OnSuccess: Navigate(scrForm3,ScreenTransition.None)
DefaultMode: If(varFormMode="edit",FormMode.Edit,varFormMode="view",FormMode.View,FormMode.New)
Item: If(varFormMode = "edit", Gallery_Main.Selected, LookUp('[dbo].[App_PAFNewProj_Main]', ID = varRecord.ID))
The next 3 screens work fine. For some reason this one screen isn't writing to the correct row. Let me know if there is anything else I can provide that would be helpful.