Given a UTC time string like this:
2005-11-01T00:00:00-04:00
What is the best way to convert it to a DateTime using a Crystal Reports formula?
My best solution is posted below.
I hope someone out there can blow me away with a one-liner...
|
|
Given a UTC time string like this:
What is the best way to convert it to a DateTime using a Crystal Reports formula? My best solution is posted below. I hope someone out there can blow me away with a one-liner...
|
||
|
|
|
Here you go: CDateTime(CDate(Split({?UTCDateString}, "T")[1]) , CTime(Split(Split({?UTCDateString}, "T")[2], "-")[1])) |
||
|
|
|
May I suggest a simplification to jons911's answer:
This has the advantage that the formula works for time zones forward of UTC 0 (e.g. +01:00). It does of course rely on the UTC string being a properly formatted ISO 8601 string. |
||
|
|
|
|
Here is my best solution, with comments:
|
||
|
|
|
|
StringVar fieldValue; StringVar datePortion; StringVar timePortion; NumberVar yearPortion; NumberVar monthPortion; NumberVar dayPortion; NumberVar hourPortion; NumberVar minutePortion; NumberVar secondPortion; datetimevar dtlimite; fieldValue := {dtsecretaria.Data_limite}; datePortion := Split (fieldValue,"T")[1]; timePortion := Split(Split (fieldValue,"T")[2],"-")[1]; yearPortion := ToNumber(Split(datePortion,"-")[1]); monthPortion := ToNumber(Split(datePortion,"-")[2]); dayPortion := ToNumber(Split(datePortion,"-")[3]); hourPortion := ToNumber(Split(timePortion,":")[1]); minutePortion := ToNumber(Split(timePortion,":")[2]); secondPortion := ToNumber(Split(timePortion,":")[3]); dtlimite := DateTime(yearPortion,monthPortion,dayPortion,hourPortion,minutePortion,secondPortion); if dtlimite > CurrentDateTime then Color(255,0,0) else Color(255,255,0) error of nError in formula . \n'\r'\nA string is required here." |
|||
|
|