Closed rammmaker closed 1 month ago
In the GoogleScripts-example.gs file, lines 34-36 is where the time and date are being set and it tells you how to change the time zone:
// Default time zone is America/Chicago. Update time zone below with appropriate ID from here: https://developers.google.com/google-ads/api/data/codes-formats#timezone-ids
var date_now = Utilities.formatDate(new Date(), "America/Chicago", "yyyy/MM/dd"); // gets the current date
var time_now = Utilities.formatDate(new Date(), "America/Chicago", "hh:mm:ss a"); // gets the current time```
thanks! I am now able to adjust date and time.
How to adjust time entry?