I have a requirement to send a completed form in view mode and allow reviewers to add comments. I have an initial screen that asks reviewers to select a record and click a button to review the form. The button sends them to a second screen where I have two forms, the form they are reviewing and another one where they can add comments (connected to the same data source). I used the following formula in OnSelect:
Set(varRecord,ComboBox1.Selected);Navigate(scrViewMode);ViewForm(frmViewMode);EditForm(frmReviewerComments)
When I preview the app, it works perfectly. The reviewer is taken to a screen where they can view the completed form and add comments. When I share it with a link or embed it, it gets stuck getting the data (2nd screenshot). I'm thinking it's because I have 2 forms on one screen and/or because I have too many commands on OnSelect (?) Does anyone have any ideas for making what I am trying to do work better, OR achieving my requirement another way? (I am open to connecting the second form to another data source if that might help). I think it MUST be possible to allow reviewers to comment on a completed form, but I haven't been able to find a cleaner way. I hope there's an obvious feature that I'm just missing. Thanks in advance!

