Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
what can I do so that each event shows only once in my calendar
function eventCalendar() {
var eventCal = CalendarApp.getCalendarById("ddnb@group.calendar.google.com")
var spreadsheet = SpreadsheetApp.getActiveSheet();
var schedule = spreadsheet.getDataRange().getValues();
schedule.splice(0, 0);
schedule.forEach(function(entry) {
eventCal.createEvent(entry[2], entry[3], entry[3]);
});
}

What I have tried:

what can I do so that each event shows only once in my calendar
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900