Hello,
I have set up a flow that allows me to automatically send an email if it doesn't already exist, and if it does exist, it just responds to it.
The problem I have is that the information that I am providing as a response is just a copy/paste of Excel tables and pivot tables. Unfortunately looking through the available flows, I can't seem to find a way to store the below data exactly as-is into a variable. The closest I have gotten was using "Read From Excel Worksheet" which does grab the information but none of it contains its original formatting.
I very much doubt that you can store the information in a variable.
One thing you can try is to loop through the datatable in order to build an html structure similar to the Excel formatting.
Another thing you can try is to copy from Excel, and then through the Outlook interface paste the copied cells.
That's unfortunate.
I was hoping to try to create a loop so all this was sent out on an hourly basis, and it seemed like the Outlook flows would have made that very easy to do.
Would you happen to have a resource on how to build HTML structures for the data table?
For building html table you can go by two options.
1. Find out the corresponding html code for the Excel table and then modify/use that in the "Send email through Outlook" by enabling the "Body is Html" option
This link will help you to get the html of the sheet.
ExtendOffice - How to convert Excel sheet or cells to html table?
2. If you think that gets too complex then simply take a basic html structure of any table and then add data from the PAD loop accordingly.
th: Table Header
tr: Table Row
td: Table Data
So take the above html and inside the PAD loop keep on adding data.
Examples:
<th>%ColumnHeader1%</th>
<tr>
<td>%LoopValue1%</td>
</tr>
Need to use string double quotes wherever applicable.
Once the loop ends the table will be automatically generated and then pass that string variable into the Outlook action.
This link will get you to know the structure of different html tables.
One post slightly to understand this is here.