i am reading the excel and storing in the database. One column name is Datetime with date time format data but when i am reading it the value changes. For example:
If the cell value is 7/8/20 1:18:58 AM , the value in the datatable is 44026.1733680556.
You can change the spreadsheet column to the date format or text format so that you can read it as a string/generic value.
while you iterate, you can use the “Format value” activity to get your output as a desired format. In your case, you can change the mm/DD/yyyy hh:mm:ss value as per ur requirement.
@harshit_gupta
in case of you want to manually get control over it before inserting it into the datatabe the double value can be parsed into a datetime and e.g. reformated as a string. Have a look here: