
Announcements
something like Extract data from nested table - Power Platform Community (microsoft.com) but no fit answer.
html likes this:
<table>
<header line>
<td> serial no 1</td> <td> 【sub table 1】</td>
<td> serial no 2 </td> <td> 【sub table 2】</td>
</table>
sub table likes this
<sub table>
<header line>
<td> data 1A</td> <td> data 1B</td>
<td> data 2A </td> <td> data 2A</td>
</sub table>
I need the result as a struct or a list
list means:
serial no 1; data 1A;data 1B
serial no 1; data 2A;data 2B
serial no 2; data 3A;data 3B
serial no 2; data 4A;data 4B
or struct
serial no 1; array[]; array[0]=struct {data 1A;data 1B} ; array[1]=struct {data 2A;data 2B} ;
serial no 2; array[]; ……
I did not found any document helpful.......
I did want to loop sub tables and save all of them as html elements to variables, then warp table-txt from every variable, but the method only support warp from web-page...