Viewing 15 posts - 16 through 30 (of 45 total)
If you would actually do an effort and read my SQL you'll see that it's a self join as I use 'table' twice with different aliases. I realize you might...
March 8, 2011 at 6:40 am
I agree, if you add a Group Total Row in SSRS you can easily make that one bold. Also, you should avoid hard coding field values into your report as...
March 8, 2011 at 2:46 am
why don't yo do it in SQL?
Fill your data set with
Select
T1.TotalMins - (T2.TotalMins/T1.TotalMins) as Change%,
|AllNeededFields|,
FROM table T1
join table T2
on T2.|PKey|= T1.|PKey|
and T2.[Year]= T1.[Year]+ 1
where T1.[Year] = @CurrentYear
March 8, 2011 at 2:44 am
your images are down...
but if you're talking about NULL, you should use isnothing() in SSRS
March 8, 2011 at 1:26 am
I don't know even know if that works but it's worth a try.
If you add a case statement to the start of your stored procedure like
case when @Filter = 1...
March 8, 2011 at 1:18 am
I suppose it's for SSRS? I recognize you from that forum.
Then you could use the expression =MonthName(Month(Fields!Date.Value),true) in your report.
February 23, 2011 at 3:23 am
try HAVING ( (convert(date,admdate_dte,101) >= @ADMDATESTART) AND (convert(date,admdate_dte,101) <= @ADMDATEEND))
Or 103, depends your date encoding.
February 23, 2011 at 12:05 am
I'm not sure how it goes with ASP. But in normal execution I would make the user parameter hidden (not internal) and provide no default values for other parameters. This...
February 22, 2011 at 11:53 pm
Try
iif(IsNothing(Fields!attend_edate.Value)=1 AND ...)
Using AND does work correctly
February 22, 2011 at 8:15 am
I've found this...
But according to this blog the method I used should definately work.
You might want to post on MSDN forums if noone can help you here
February 22, 2011 at 3:19 am
It beats me 🙁 I have this setup working on a 2008R2 but it shouldn't make any difference.
Does it also show this way in BIDS preview?
February 22, 2011 at 3:08 am
If you're a 100% sure then I'm clueless as I have it working right now in front of my eyes.
Select the placeholder, view properties F4, MarkupType should say HTML.
February 22, 2011 at 12:50 am
did you do the first step?
are you running SSRS 2005?
February 22, 2011 at 12:43 am
ok, that's why we're here.
Right click on your placeholder in SSRS and click Placeholder Properties.
Within the general tab, choose radio button "HTML - Interpret ..." and click OK.
Now go to...
February 22, 2011 at 12:18 am
as I already said, you can if you wrap them in html tags. You could use Replace() in you SQL query.
February 22, 2011 at 12:03 am
Viewing 15 posts - 16 through 30 (of 45 total)