View the original community article here
Last tested: Sep 17, 2019
If you schedule on the 31st, it will not run on months without 31 days. To get the last day of the month there are several workarounds:
- Use custom filters as in this Help Center article to force the Look to have no results except for on the last day of month (Does not work for dashboards).
- Use a Datagroup trigger instead, using SQL similar to the help center article.
Feature request here for comment!: https://feedback.us.pendo.io/app/#/case/59784?section=requests
An example of using the sql_trigger with a Datagroup to fire a schedule on the last day of the month would be: SELECT DATE_TRUNC('m',DATEADD(d,1,CURRENT_DATE))
This content is subject to limited support.