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.

 All Forums
 SQL Server 2012 Forums
 Analysis Server and Reporting Services (2012)
 Expression with Dataset SSRS 2012

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 report

select distinct year([PerformanceDate]) as 'E_Year',

convert(date,[PerformanceDate],101) as 'E_Date'

from table

I am using the E_Date as a parameter, but the parameter list is coming out like
13/02/2013 12:00:00 AM

within 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.

Regards

Rob

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")
Go to Top of Page
   

- Advertisement -