I am using this formula to look at the created date of a submittal and then generate the end of the month date based on when it was created:
=DATE(YEAR(Created@row ), MONTH(Created@row ) + 1, 1) - 1
But if something is created on the last day of the month, it puts the end of the month date for the next month. So, for example, if it was created 03/31/2025, then it puts the end of the month at 04/30/2025, but I actually want it to be the 03/31/2025. Is there a way to correct this formula?