Delete Google Calendar events by date using Google Script

To quickly and easily delete Google Calendar events by date you can use Google Script https://script.google.com to run the following script. Modify script to include your Google Calendar name which is likely your Google email. Then modify the date variables fromDate and toDate. Note the months start from 0 (Jan). function delete_events() { var calendarName […]

Delete Google Calendar events by date using Google Script Read More »