Setting Long-Term Reminders with Date and Time Features
Sometimes, you need to remember important tasks or appointments far in advance. Whether it's days, months, or even years ahead, you can use our Date and Time feature in conjunction with Google Calendar to set up timely reminders.
Here's a practical example:
Let's say you need to pay your rent at the end of each month. You want a reminder on a weekday, just in case the last day falls on a weekend. Here's how to set it up:
1. Go to ifttt.com/create
2. Click "Add" next to "If This," then search for and select the Date & Time - Every month on the trigger. Press 'Create Trigger'.
3. Click "Add" next to "Then That," then search for and select the Google Calendar -> Create a Detailed Event action.
4. Use a filter code to skip the date and time falls on a weekday. To add the filter code, click the + sign in between the trigger and action.
Copy-paste the filter code below:
let day = Meta.currentUserTime.day()
if (day === 0 || day === 6) {
GoogleCalendar.addDetailedEvent.skip()
}
5. Hit 'Save' Applet.
This combination allows you to create a recurring reminder that will notify you on a weekday at the end of each month. You'll get a timely heads-up for your rent payment, helping you stay on top of your financial responsibilities.
By using these features, you can create custom reminders for various recurring tasks, from bill payments to important anniversaries or regular check-ins. This way, you'll never miss a beat, no matter how far in advance you need to plan.