Any suggestions on VBA code for formatting Access dates and time to UTC (Coordinated Universal Time) format instead of the standard Access format of =Date() or =Now()?
The idea is to transfer the database backend to MySQL, which natively stores by default all dates and times in UTC format and returns to original user format when retrieved.
The issue is =Date() and =Now() uses the database frontend computer date and time settings when creating and modifying records.
I anticipate this being a problem when multiple time zones are involved (i.e. madness when auditing records); therefore, I would like to standardize the date and time setting at the database frontend.
Thanks in advance for any insight!