How to assign a date time value from a datatable

I have excel column with date time format
03/23/2021 08:00:00
I reading this column from excel and putting in datatable and assigning it to variable
Using assign activity with row.item(0).ToString

Giving me error
Let me know anything needs to be done

If you are using For Each Row activity to loop through each row in data table then you need to use row(0).ToString

Will this takes the datetime value which is in excel column?

Hi @Venkata_Premchand

What error u are getting?

yes it will return as a string.
If you want to convert to datetime data type you can use Convert.ToDateTime(row(0)).ToString(“dd MMM yyyy”), this will return 23 Mar 2021

Will try and let you know thanks for your valuble time