Hi @Cartorio_lexly.com
Is it always the 25th? Even if that falls on a weekend?
You should be able to do this in a formula by taking the Month and Year of Created Date, then smashing that together with 25 as the day. Probably a good idea to then turn that into a date format so you can use it later.
DATETIME_PARSE(CONCATENATE(DATETIME_FORMAT({Created Date}, 'M'), '/25/', DATETIME_FORMAT({Created Date}, 'Y')))
One thing to keep in mind, it the created date is the 26, it is not going to jump into the next month’s 25th. It could but that would be a little more work.