datetime - How do I get the last day on the month using SQL Reporting Services -


In SQL Server Reporting Services, how do I calculate the last day of the current month?

Here I answer

  = DateSerial (year (now () ), Month (now ()), "1". AddMonths (1) .adends (-1)  

Comments