Parabola Schedule Run Last Day of Any Given Month

  1. What is your feature/integration request?
    Parabola runs that can be scheduled to the last day of every month (regardless of it being on the 28th, 31st etc.)
  2. What problem would this feature/integration solve?
    We have a monthly reporting structure, where runs should be conducted on the last day of every month :). Given we have so many runs, it would be nice to have it be automated
  3. How do you solve/workaround this problem today?
    I manually run it on the last day of the month

This would be a great feature. I’m also building month-end reports and it would be great to have them ran and emailed to stakeholders automatically.

1 Like

You can build a workaround now. There are only 12 months in the year, so you could:

  1. Import the date/time.
  2. Split the month and day number.
  3. Use if else for the number of days that should be in the month. IE if month = 1, days in month = 31. If month = June = 30.
  4. Use if else to put an X in the column if today’s day number = the number of days that should be in the month from step 3. IE if today is May 22, it will put an X in the column if 22 = 31. Since it doesn’t, no X would be in the box. However on May 31, 31 = 31, so the if/else would put X in the column on the last day of the month.
  5. Row filter for X
1 Like