Viewing 15 posts - 121 through 135 (of 256 total)
Also on the sorts do you have to use a Parameter? SSRS/Report Builder let you create Interactive sorting on the column. After the report is run the user can decide...
September 17, 2014 at 4:11 pm
Not that I am aware of, however you may be able to get crafty with some cascading parameters. Just built one today that is very slick:-D
September 17, 2014 at 4:09 pm
Not sure why its giving you a hard time. I had built a dashboard that compares the current year vs the past year two different datasets. Here is from one...
September 17, 2014 at 11:36 am
I could have sworn I have done this before. Let me look at some of my old rdl's. I don't think I used look up either. I may have done...
September 16, 2014 at 1:32 pm
If you just need the one result percentage then use a calculated field possible?
September 16, 2014 at 1:19 pm
If you cant resolve this via SQL code or use any kind of Groupings in the rdl then you could try something like this "Psuedo Code"
[Code="sql"]SUM(IIF(Fields!Month.Value = "January" ,...
September 16, 2014 at 10:45 am
Doesn't SSRS allow active user sorting on the column. I could swear I have done that before. Interactive sorting on the Text box. Have you played with that at all?
September 14, 2014 at 3:42 pm
Ignore my first attempt here you go.
SELECT substring('99.78%',1,len('99.78%')-2) + '%'
September 11, 2014 at 11:40 am
I'm not too god with these but this works as long as the % doesn't go over 99.99
SELECT SUBSTRING('99.87%', LEN('99.87%') -5,4)+'%'
September 11, 2014 at 7:58 am
That's what I meant. Bad choice of words on my part again. It is no longer offered is what I meant to say.
September 10, 2014 at 9:50 am
I thought the 2008 cert was expired anyway? Am I wrong on that? I'm currently studying for the 2012 myself even though I only work on 2008 R2. Most of...
September 10, 2014 at 9:41 am
Jack Corbett (9/9/2014)
KoldCoffee (9/9/2014)
I'm asking for help with one small part of a report and not for advise on...
September 9, 2014 at 7:08 pm
I saw that very bad wording on my part.
September 9, 2014 at 3:15 pm
I'm a noob but Predicates only evaluate to TRUE. Also NULL is not a value. Query 3 is correct as far as my very limited knowledge goes.
So it skips in...
September 9, 2014 at 12:45 pm
Viewing 15 posts - 121 through 135 (of 256 total)