In SQL Server Reporting Services, how would I calculate the last day of the current month?
From the blog of a Microsoft SQL Team member:
-- returns the last day of the current month. select dbo.Date(year(getdate()), month(getdate())+1,0)
http://weblogs.sqlteam.com/jeffs/archive/2007/01/02/56079.aspx
Hope this helps! --Dubs