Upload Multiple Attachments from Power Apps to SharePoint list or library || Power Automate

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ธ.ค. 2024

ความคิดเห็น • 20

  • @jadhav_ravi_oo7
    @jadhav_ravi_oo7  ปีที่แล้ว +4

    CODE
    File Name - triggerBody()['file']['name']
    Power Apps formula -
    Set(
    var12,
    Patch(
    Geography,
    Defaults(Geography),
    {Title: TextInput1.Text}
    )
    );
    Reset(TextInput1);
    ForAll(
    DataCardValue4.Attachments As Document,
    AddAttachmentfrompowerappstosharepointlist.Run(
    {
    file: {
    contentBytes: Document.Value,
    name: Document.Name
    },
    number: var12.ID
    }
    )
    );
    Notify("done");
    Reset(DataCardValue4)

  • @sanikathorat2137
    @sanikathorat2137 ปีที่แล้ว +2

    Good 👍🏻
    Keep it up

  • @ranatahirtahir9980
    @ranatahirtahir9980 ปีที่แล้ว +2

    Nice

    • @jadhav_ravi_oo7
      @jadhav_ravi_oo7  ปีที่แล้ว +1

      Thank You So Much Brother ❤, Your Positive Response Motivates me to put More Effort's

  • @MohammadAli-ts2ev
    @MohammadAli-ts2ev ปีที่แล้ว +2

    Great video. Plz try to remove the fluff like the loading process

    • @jadhav_ravi_oo7
      @jadhav_ravi_oo7  ปีที่แล้ว +1

      Thank you for your feedback, I will work on it. And Now Onwards I will remove the loading process in the video.
      Thank you so much 😊 for
      Supporting 💝

  • @ishwaryadoss1421
    @ishwaryadoss1421 6 หลายเดือนก่อน +1

    Thanks for sharing! Is it possible to attach multiple attachment fields in a different forms to single list?

  • @suhaimialikusumah5221
    @suhaimialikusumah5221 11 หลายเดือนก่อน +1

    Hi, why i can’t run multiple attachments using your provided powerapp formula…. Can you help assisting me. Thank you

    • @jadhav_ravi_oo7
      @jadhav_ravi_oo7  11 หลายเดือนก่อน +1

      Sure, Re-watch video. You are missing something

  • @mohdshujath3632
    @mohdshujath3632 5 หลายเดือนก่อน +1

    If i have multiple attachment controls.? does it patch multiple attachments from multiple attachment controls to same record.

  • @MarshaJoseph-e7q
    @MarshaJoseph-e7q 3 หลายเดือนก่อน

    How do we create attachment control to each row of a gallery or how will we insert attachment control to gallery.

  • @muhammadrasyidan9395
    @muhammadrasyidan9395 3 หลายเดือนก่อน +1

    For multi attachment what is the code to use?

    • @jadhav_ravi_oo7
      @jadhav_ravi_oo7  3 หลายเดือนก่อน

      Check Video, i write and show their please

  • @tylerdegrand3034
    @tylerdegrand3034 10 หลายเดือนก่อน +1

    Does this approach work for offline/temporary internet connection issues?

    • @jadhav_ravi_oo7
      @jadhav_ravi_oo7  10 หลายเดือนก่อน +1

      No, it requires internet

  • @Raghavendrakaipu-o6x
    @Raghavendrakaipu-o6x 11 หลายเดือนก่อน +1

    How send mail with attachment through power app with power automate

    • @jadhav_ravi_oo7
      @jadhav_ravi_oo7  11 หลายเดือนก่อน +1

      1st create a file in drive and then send file content in email attachment or directly send file content form power apps v2 connector to email attachment

  • @jadhav_ravi_oo7
    @jadhav_ravi_oo7  ปีที่แล้ว +1

    For Single Attachment - ForAll(
    DataCardValue4.Attachments As Document,
    AddAttachmentfrompowerappstosharepointlist.Run(
    {
    file: {
    contentBytes:First(DataCardValue3.Attachments).Value,
    name: First(DataCardValue3.Attachments).Name
    }})
    )
    );
    Notify("done");