Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
masterdineen
Aged Yak Warrior
550 Posts |
Posted - 2013-11-04 : 11:22:23
|
Hello there, I have the following dataset in my ssrs reportselect distinct year([PerformanceDate]) as 'E_Year', convert(date,[PerformanceDate],101) as 'E_Date'from tableI am using the E_Date as a parameter, but the parameter list is coming out like13/02/2013 12:00:00 AMwithin the dataset, I want to use the I want to use a function to date only ( 2000-01-31)can someone point me in the right direction please.RegardsRob |
|
James K
Master Smack Fu Yak Hacker
3873 Posts |
Posted - 2013-11-04 : 12:45:29
|
Format it to what you want it to look like - for example: =Format(Fields!E_Date.value,"yyyy-MM-dd") |
|
|
|
|
|