How can I write one column to an Excel file

@oitot, directly use this query in write range, if you want distinct elements from that column
datatable.DefaultView.ToTable(True,“Column Name”)

If you want all values (including duplicate) make that true to false !

Regards,
Dominic :slight_smile:

5 Likes