Viewing 15 posts - 31 through 45 (of 183 total)
Hi Luis do you mind explaining what exactly this part does ? Will it treat the nulls as blank?
ISNULL(@parameter2,'') = ''
July 9, 2015 at 9:47 am
Looks like something in the where clause that needs to be tweaked.This is what I am using ....
WHERE
((parameter1 = @parameter1) OR
(parameter1 = @parameter1 AND...
July 8, 2015 at 3:27 pm
I tried this sometime back... Hope it helps you
June 10, 2015 at 9:37 am
Try using a Table and add Image in the top row.
and data in the row below that.
Your query will probably have to be tweaked to get the row information per...
June 10, 2015 at 9:31 am
If its today it should show data from last week to last week - 52 weeks
Because we are in the middle of the week.. Hope I am not confusing
May 28, 2015 at 3:55 pm
52 weeks from current week. If its the middle of the week then 52 weeks from past week So, The starting date will be based of current date
May 28, 2015 at 3:48 pm
Set Interactive height property of the report to 0 inc
May 27, 2015 at 12:24 pm
Did you try List ? I guess that should work here
May 27, 2015 at 10:28 am
Thanks. Tweaked it a bit to get different columns
declare @ThisDate datetime;
set @ThisDate = GETDATE();
with ThreeWeek as (select rn from (values (0),(1),(2))dt(rn))
select distinct dateadd(wk, datediff(wk, 0, @ThisDate) + (0),...
May 4, 2015 at 3:07 pm
Monday So, Need to see May 4 , 2015 , May 11, 2015 , May 18,2015
May 4, 2015 at 2:42 pm
Viewing 15 posts - 31 through 45 (of 183 total)