Google calendar pack: event reminder defaulting to 11:50pm?

I’m using a button with a formula to create a Google calendar event and I just noticed that it is setting the reminder time for 11:50pm the previous day which just seems so weird. It only happens on all day events.

I would like to either have it default to none or be able to set it.

Has anyone noticed this or figured out how to fix it?

[Google Calendar]::CreateEvent(
[email@email.com],
thisRow.[Onboarding Record] .[New Hire Name] + " Orientation",
thisRow.[Onboarding Record].[Orientation Date],
thisRow.[Onboarding Record].[Orientation Date] + 1,
isAllDay: True,
description: thisRow.[Alt Text Body],
calendar:"``email@email.com",
attendees: [Orientation Template].Filter(Email.IsNotBlank()).Email,
conferenceType:“Meet”)

1 Like

As far as I know, there’s no option to set up a notification with the pack, so you’re most likely getting the default reminders in your Google Calendar. Try adjusting those.

1 Like