I am curious about how to print the entire data table

Is there a way to print the data table at once after data scraping?

@sumshine - where would you like to send? to printer or file?

There is ā€œOutput Datatableā€ activity which converts your DT to Txt format which you can use it in Write Line etc etc…

image

Output

1 Like

If you want to print some row, you can use String Join Method.

row ← i’th row of datatable that you want to print

use write line activity
String.Join(ā€œ,ā€,row.ItemArray) ← String Join Method returns joined string of Array

Thanks for your help, this was the answer I wanted.

1 Like

I also learned a new way. I hope you are blessed.

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