I want to use that whole row and extract the column data in that row to append a string variable which I have already created at a parent level.
I have created a sheet which has names and email ids of 10 employees.
They all submit a form daily as an attendance.
I run a scheduled flow everyday at 9:20 AM.
So, I want to collect all their form responses as a single string and send that to teams as a message at 9:20 AM everyday.
I have written a flow already which gets the form responses and inserts them into an excel sheet.
--
Finally I want to send a message something like :
--
Emp1 : Not yet filled the form.
Emp2 : Tokyo Office.
Emp3 : Work from home
Emp4 : Work from home.
.
.
Emp10 : Not yet filled the form.
----
How do I achieve this ?
My work till now has been to first query all the rows from the form responses sheet I created earlier based on the current date.
I want to filter the rows from the excel sheet based on two conditions :
1. The date should be today.
2. The email address should be present in the list of email ids which I have already created in a separate sheet.
Thank You.