I have datable with column format as date ho can we convert the format to string and use in filter datatable activity @Palaniyappan
Hello @sheetal_Bora ,
You can change the type of column using the below method.
NewDT = Dt.Clone
NewDt.columns(“columnname”)=Get(System.String)
(From dr1 in DT.AsEnumerable() Select NewDt.LoadDataRow(New Object() {dr1(“col1”).ToString, Convert.ToString(dr1(“col2”).toString)},false)).CopyToDataTable
DT= source table
NewDt = destination table (you need to build this table columns first