Append data to a particular column of CSV/Excel File

There are no headers of excel/csv file. First two columns are already filled. How to add data to specific columns say 3rd or 4rth column from a data table?

@Abhishek_Kumar1

Welcome to the community

If you dont have names you can use column index…index starts from 0 …so 3rd column is 2…and 4th column is 3

Dt.rows(0)(2) - for first row 3rd column

Cheers