How to add Column name for newly added column

I would like to know how to add a column name for the newly added column

@naveenkumar.sathiyamoorth

Welcome to forums

Please be specific while asking a question

Are you looking to add a Column to a Datatable?

Use

Hope this helps you

Follow Link

Thanks

@naveenkumar.sathiyamoorth
Assumed the columns from a datatable are meant.
in case of the column is already present in the datatable and you want to rename it:

Assign Activity:
leftside: yourDataTableVar.Columns(ColNameOrIndex).ColumnName
rightside: “YourNewColumnName”

1 Like