简体   繁体   中英

How to retrieve current month in SSRS expression

I want to get current month as default value of a parameter. I've come up with (which does not work):

=Month(Now())

If you want to get the month as an int that goes from 1 to 12, you can use this

SELECT MONTH(GETDATE())

This answer was based on the official documentation that you can see in here - http://technet.microsoft.com/en-us/library/ms187813.aspx

Edit

For reporting services specifically, you can use

MonthName(NOW())

This will return a month name and i believe is the function you're looking for.

Or, in case you want the month as an integer, try using

Month(TODAY())

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM