Submitting Multiple Forms In PowerApps

Поділитися
Вставка
  • Опубліковано 11 гру 2024

КОМЕНТАРІ • 9

  • @zeeb1973
    @zeeb1973 3 місяці тому +1

    great and to the point. Good Job!

    • @ConsultJC
      @ConsultJC  3 місяці тому

      Glad it was helpful!

  • @serenaclairetalks
    @serenaclairetalks 3 місяці тому +1

    Thanks! 🙏

  • @TannaGaming
    @TannaGaming Місяць тому +2

    What would you do if you had to patch to 3 lists and 3 forms, instead of 1 list.

    • @ConsultJC
      @ConsultJC  Місяць тому

      @@TannaGaming do you intend to patch to 3 lists with one form? Else from what I’m understanding is that you’re trying to patch to 3 different lists with 3 different forms? 😁

    • @TannaGaming
      @TannaGaming Місяць тому

      @@ConsultJC Patch to 3 different lists and 3 different forms. Thanks.

    • @ConsultJC
      @ConsultJC  Місяць тому +1

      @@TannaGaming perhaps what you could do is with the click of a button
      // Submit data for Form1 to SharePointList1
      Patch(
      SharePoint List1,
      Defaults(SharePoint List1),
      Form1.Updates
      );
      // Submit data for Form2 to SharePoint List2
      Patch(
      SharePoint List2,
      Defaults(SharePoint List2),
      Form2.Updates
      );
      // Submit data for Form3 to SharePoint List3
      Patch(
      List3,
      Defaults(SharePoint List3),
      Form3.Updates
      )
      hopefully that helps?

    • @TannaGaming
      @TannaGaming Місяць тому +1

      @@ConsultJC Yes it worked! I just had to add single quotation marks to everywhere my list is referenced. Example: Patch('List Name1', Defaults('List Name1'), Form1.Updates) Thanks for responding I really appreciate this.