25-08-21 08:00 AM
25-08-21 12:03 PM
26-08-21 02:20 PM
27-08-21 05:38 AM
31-08-21 01:43 PM
Hello,
I previously wrote such an action within my MS Outlook VBO I hope it helps.
If the table you are trying to read is always in the same format (maybe a table that your robot generates in the runtime) you can reverse calculate a collection from html body. I did this in one of my processes. You can use regex to get values that are in between <td> </td> and count the rows and columns (by counting the occurences of <tr> <th> tags) then dynamically create a collection with that info.
Hope it helps
Best,
Baris Karakas
01-09-21 07:09 AM
<table id="t01">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
01-09-21 08:30 AM
23-05-24 08:08 AM
I am trying to read the table from email body using Outlook VBO. Unable to extract table data. Need assistance
23-05-24 08:57 AM
Hi @keerthi03 ,
Can you please share some more details as in what exactly is the issue. Are you not able to get the HTML table content itself or do you have problems while parsing the same. For parsing the content, like already people have suggested here you can use string manipulation or simply have some sort of a regular expression which can be used in a loop or the expression itself can identify patterns.
If you can share a bit on what exactly is the issue and how the HTML body looks like if you are getting one, then we can dig more into the same.
NOTE: If you are sharing screenshot, please ensure no confidential data is present in the same.