Forum Discussion
MCFNeil
8 years agoQrew Captain
You have to account for the time zone of the data center when using the API, and have to convert to unix time as well.
Otherwise you get the day difference depending on if it runs early morning or late evening.
(Yes I know, its ridiculous)
Otherwise you get the day difference depending on if it runs early morning or late evening.
(Yes I know, its ridiculous)
PaulVorster1
7 years agoQrew Cadet
HI Joshua, i had the same problem, and this formula resolved my problem...
"&_fid_34=" & Right("0"&ToText(Day(ToDate([Current Date and Time]))),2) &"-" & Right("0"&ToText(Month(ToDate([Current Date and Time]))),2) &"-"& ToText(Year(ToDate([Current Date and Time]))) &" "& ToText(Hour(ToTimeOfDay([Current Date and Time]))) &":"& ToText(Minute(ToTimeOfDay([Current Date and Time])))
"&_fid_34=" & Right("0"&ToText(Day(ToDate([Current Date and Time]))),2) &"-" & Right("0"&ToText(Month(ToDate([Current Date and Time]))),2) &"-"& ToText(Year(ToDate([Current Date and Time]))) &" "& ToText(Hour(ToTimeOfDay([Current Date and Time]))) &":"& ToText(Minute(ToTimeOfDay([Current Date and Time])))