Find Date for Specific Day

Just looking to get the date that corresponds with a specific day of the month. For example, the third Sunday of this month. I know this is possible with Luxon using something like below, but I’m not sure if that’s easily done in N8N.

const currentMonth = DateTime.local().startOf('month');
const thirdSunday = currentMonth.plus({ weeks: 2 }).weekday;

The example below should do it.

Perfect, thanks @RicardoE105!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.