Hello community member pls help me to solve this
How to convert OAdate format into (“dd/MM/yyyy”) ? i have 44200.5 as a input
Thanks in advance
Hello community member pls help me to solve this
How to convert OAdate format into (“dd/MM/yyyy”) ? i have 44200.5 as a input
Thanks in advance
Hi @shiv.mandal ,
Try with this expression
DateTime.FromOADate(Convert.ToDouble(inputstringvariable)).ToString(“dd/MM/yyyy”)
Regards,
Ashok ![]()
Hi @shiv.mandal
Try This
DateTime.FromOADate(44200.5).ToString("dd/MM/yyyy")

Hope it will helps you ![]()
Cheers!!
Hi @shiv.mandal
Try this:
formattedDate = DateTime.FromOADate(CDbl(inputString)).ToString("dd/MM/yyyy")
YourDateVariable = DateTime.FromOADate(44200.5).ToString("dd/MM/yyyy")
Hi @shiv.mandal
Try this:
DateTime.FromOADate(Convert.ToDouble("44200.5")).ToString("dd/MM/yyyy")
If output is of DataType System.Double then use below syntax:
DateTime.FromOADate(44200.5).ToString("dd/MM/yyyy")
Regards
Thank You for your help.
Thank you everyone for the valuable response .
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.