Share via

Convert the Edit screen into a simple guided flow in Power App

Jaden Rinaldi 0 Reputation points
2026-05-25T01:23:22.94+00:00

Convert the Edit screen into a simple guided flow in Power App

Microsoft 365 and Office | SharePoint | For business | Windows
0 comments No comments

2 answers

Sort by: Most helpful
  1. Huy-K 12,115 Reputation points Microsoft External Staff Moderator
    2026-05-25T02:05:01.89+00:00

    Dear @Jaden Rinaldi,

    Regarding your question about convert the edit screen into a simple guided flow in Power App. For you to be assisted properly, please reach out to Microsoft Power Platform Community Forum Thread. The reason I am asking you to post a new discussion is that in this forum, we have limited resources and very few resources to test your issue and in the Microsoft Power Platform Community Forum Thread, you will get the most qualified group of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction. 

    Thank you for your cooperation and understanding. Feel free to post your questions in the Microsoft community and we'll always do our best to help you! 

    Have a good day! 

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-05-25T01:23:38.5533333+00:00

    Use a canvas app form plus navigation and a flow to guide users step by step instead of exposing a single complex Edit screen.

    A simple pattern:

    1. Split the Edit experience into multiple screens
      1. Add a new screen for each “step” of the flow (for example: Details, Additional Info, Review).
      2. On each screen, insert an Edit form control bound to the same data source and record, but configure only the fields relevant to that step.
      3. Use SubmitForm only on the final step, or on each step if incremental saves are required.
    2. Control navigation between steps
      1. On the first step’s Next button, set OnSelect to something like:
              SubmitForm(EditFormStep1);
              Navigate(Step2Screen)
        
      2. On intermediate steps, repeat the pattern: submit the current form (if needed) and navigate to the next screen.
      3. On Back buttons, use Back() or Navigate(PreviousScreen) to move to the previous step.
      4. On the final step’s Finish button, use SubmitForm(EditFormFinal); Navigate(ConfirmationScreen).
    3. Reset and prepare forms when entering a step
      1. On each step screen’s OnVisible property, reset or initialize the form as needed. For example:
              ResetForm(EditFormStep1)
        
        so the form is ready when the user enters that step.
    4. Add a guided decision step with a flow (optional)
      1. Add a “confirmation” or “action” screen at the end of the Edit flow.
      2. Insert Yes/No buttons.
      3. Use the Power Automate pane to create or attach a flow (for example, to send a confirmation email or perform a follow‑up action) and bind it to the Yes button.
      4. Example OnSelect for a Yes button that runs a flow and then returns to the start:
              FlowtriggeredbyaPowerapp.Run(
                  EditForm3.LastSubmit.Email,
                  TextInput1.Text
              );
              Navigate(Screen1)
        
    5. Keep the Edit experience simple
      1. Use one form per step with only a few fields.
      2. Use clear button labels (Next, Back, Finish) and optional progress indicators (e.g., “Step 1 of 3”).
      3. Use a final screen to show success or error messages after the last submit.

    This approach converts a single Edit screen into a guided, multi‑step flow while still using standard canvas app forms and navigation.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.