Hello
I am working on a flow that requires me to extract email addresses from an Excel document in order to send separate emails containing specific information to each end user. However, I am encountering an issue with the split expression.
The issue is that the split expression is only recognizing the first email address and not pulling in the second email address. I have tried troubleshooting the issue, but I have not been able to resolve it.
1. The first portion of my build, is creating the table and drilling down to get the unique users:

2. Next, in my apply to each batch, I'm converting the unique email output to a string which creates this output "Worker Supervisor Email":"email1@email.com"}variables(outputs('Get_unique_users')){"Worker Supervisor Email":"email2@email.com"}

3. Then I isolate the email from the mapped value using this split expression: split(body('Convert_unique_email_output_to_string'), '"')[3]

The split expression's output only shows email1 and not the other emails listed in the excel document

Can you assist with updating the split expression or is there another route I can take? Thank you!