
I have a powerapp, and on it i need up to 6 attachments. It doesnt HAVE to have 6, but a max of 6. I used the attachments feature in powerapps to create this.
I know how to push 1, 2, or 3 pictures into sharepoint by using First, Mid, Last of a collection, but for the life of me I cannot figure out how to send an array of more than that images into power automate. I tried converting it to a JSON and then sending it over to an array, but PowerApps gives me a WADL error.
Can someone please walk me through it step by step. Im starting to get a little frustrated since I have tried a variety of things now and nothing seems to work for something with such a simple concept.
End goal is to add an attachment for each item in the attachment thing within powerapps to a connected sharepoint list.
Hi,
If you know how to push 1, you just need to use ForAll function to push all items. for ex:
ForAll(
<AttchmentControl>.Attachments,
<your function to push one>
)