How to extract email from email table and then write to excel

I dont wan

Name of School xx
Name of FP yy
Type of Query aa
Date In
Query Question bb
Query Solution cc

i only wan xx, yy, aa, , bb, cc with my preset excel with the header in an row

Hello,

Save body content as html file and open html file in a web browser.
Then open html file in web browser and extract table.

Regards,
Aman

Hi @xxGoRpa

Can you try below

String.Join(", ", DT.AsEnumerable().Select(Function(r) r.Field(Of String)(1).Trim()))

Input:

image

Cheers!!

1 Like

@xxGoRpa

Then delete the columns you dont need

If you want the column to be transposed then let me know accordingly we can transposse

Cheers

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.