2 Antworten
DOCUMENTATIONSample Date Formulas | Salesforcehttps://help.salesforce.com/articleView?id=formula_examples_dates.htm&type=0&language=en_US&release=206.9Finding the Last Day of the MonthThe easiest way to find the last day of a month is to find the first day of the next month and subtract a day.IF( MONTH( TODAY() ) = 12, DATE( YEAR( TODAY() ), 12, 31 ), DATE( YEAR( TODAY() ), MONTH ( TODAY() ) + 1, 1 ) - 1 ) - TODAY()Let me know if it helps you and close your query by marking it as solved so that it can help others in the future.Thanks.