I am using Report builder. Is there any ways to display the date of datetime parameter in dd-MMM-yyyy ( 1-Mar-2017) format?
Asked
Active
Viewed 552 times
1
-
Do you mean you want to the date format in the date picker to match that? – R. Richards Mar 06 '17 at 01:22
-
Yes, that is the format i want to use in the date picker – Noobie Mar 06 '17 at 01:42
-
1http://stackoverflow.com/questions/38202281/change-datetime-format-in-date-picker-ssrs – R. Richards Mar 06 '17 at 01:47
-
thanks for reply! However, I can't find the (1-Mar-2017) format after i deployed it. – Noobie Mar 06 '17 at 01:53
1 Answers
1
SQL Server's CONVERT()
function should be able to handle this:
SELECT CONVERT(varchar, date, 106) AS date_formatted
FROM yourTable
Here date
is the column containing dates which you want to format as you specified in your question.

Tim Biegeleisen
- 502,043
- 27
- 286
- 360