Viewing 15 posts - 166 through 180 (of 183 total)
Declare @DateInput as Date
Select
Case when @DateInput between '2012-06-06'and '2013-06-10'
Then
AnniversaryStartDate
when @DateInput between '2012-06-06'and '2013-06-10'
Then
AnniversaryEndDate
Else
Null
End as AnniversaryStartDate,AnniversaryEndDate
from dbo.AnniversaryData
where DateInput = @DateInput
This resolves the issue...
September 27, 2013 at 12:42 pm
convert(varchar,columname) helped in SSRS.
But Can I use All for two parameters?
September 18, 2013 at 4:01 pm
I was about to post everything. But what you sent actually helped.
Thanks so much
September 17, 2013 at 2:40 pm
Are you writing a store procedure for it?
September 4, 2013 at 11:31 am
Yes, So, I changed the format in SQL and then just bought the field to SSRS.
That worked.
September 4, 2013 at 9:17 am
Wow, That surely helped.
But my data should start from June,2013 going backword. ( Thats how the Query is written and executes in SMS).
In the matrix it starts with 012013
Any Idea...
August 28, 2013 at 3:26 pm
select ProdMonth ,ProdYear from Production
where ProdYear >= DATEADD(yyyy,-1,getdate())
returns no data... However , there is data present. DOn't know whats wrong...
August 23, 2013 at 11:17 am
Great.
Any clue how that will work in crystal?
August 2, 2013 at 2:38 pm
Viewing 15 posts - 166 through 180 (of 183 total)