Hi Everyone!
Long time Power Automate user, first time poster! Generally I can find an answer to what I'm doing online but I'm stuck.
I have an equipment inventory list in SharePoint that is connected to a PowerApp. Our staff can scan the piece of equipment and have certain fields updated based on the button (time scanned, assigned to, status, etc.).
I've now been asked to have a report generated when items are returned. At present, I have setup the button in Power Apps to scan barcodes into a collection. They then hit another button that submits the data in the collection in JSON format to Power Automate. Sample of the data is:
[
{
"BarcodeInfo": "IT-TEST-1"
},
{
"BarcodeInfo": "IT-TEST-2"
},
{
"BarcodeInfo": "IT-TEST-3"
},
{
"BarcodeInfo": "IT-TEST-4"
},
{
"BarcodeInfo": "IT-TEST-5"
}
]
This is where I get stuck. Next step (in my mind - please advise if there is an alternative more effective way) is to run "Get Items" from the SharePoint list for each Barcode value. From there, put the BarcodeInfo (correlates to the Equipment ID in the SP list) and collected information from the Get Items action into a table. I can then put that table into my template report document, pdf it, save it to our repo and email it out.
Any advice on how I can get the info and append it to a table? Should I use an Excel online table? Or an HTML table?
Thank you Community!