I have a Power Automate flow, that uses Execute a Stored Procedure (v2) to get a list of Rows from the database based on some logic that occurs server-side.
The list contains one column of 5 rows, that I need to place into the body of an e-mail, but when I select the ResultSet (column name), it automatically defaults to using Apply to Each, which means it takes the 5 values and sends 5 emails to the user for each row with one unique value in each e-mail.
Basically, I want the e-mail to send the row as this:
Hi, here are your 5 references:
123456
234567
345678
456789
567890
How can I achieve this?
Thanks