i have this : 44721 and i need this : 09/06/2022, how can i change it
Hello.
Try this:
DateTime.FromOADate(Double.Parse(cell.ToString))
Hug
1 Like
I get the date from an excel in a sharepoint, but i don’t have the good format
I have this error :
The reason could be the variable “dated” is of String and the right-hand side of assign activity is giving you the Date type.
Check the data type of “dated” variable
1 Like
If you click on “String” type then you would see a dropdown, you need to click on “More types” then you would see a very big list from there you need to select “DateTime” type
1 Like
i have this :
i need also to change it to 09/06/2022 ==> dd/mm/yyyy and without 00:00:00
Try
dated.toString(“dd/MM/yyyy”)
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.