Viewing 15 posts - 2,821 through 2,835 (of 3,489 total)
Thanks. That's what I thought, but wanted to make sure I wasn't missing something.
October 15, 2014 at 9:28 am
If you're brand new to SSRS, Brian Larson's book is pretty good. Wordy, but he walks you through pretty much every step. His book covers 2008 (not R2, which...
October 14, 2014 at 9:30 pm
Check out this article [/url].
It shows one of the reasons to have a Calendar table. It makes a job like the one you are attempting really easy.
The problem you...
October 14, 2014 at 1:21 pm
Any chance you can post the create table scripts for the 3 tables? (Are these part of an external system? the table and field names are mind boggling!)
October 14, 2014 at 10:35 am
I guess you don't have to build stored procedures, but it makes things a lot easier.
Any chance you could post some dummy data, so we can see what...
October 13, 2014 at 10:15 am
The query you posted had me confused. Once I took a step backward and slapped up a totally fake dataset, this was a snap. I created a bar...
October 10, 2014 at 10:51 pm
Yes, I admit a CROSS JOIN would kill performance, but I would definitely filter first and then create the smallest cross join possible.
Glad you got it sorted.
October 9, 2014 at 7:16 pm
Without table definitions and maybe some sample data, it's hard to tell, but I would guess that if you created a Calendar table and outer joined that to the source...
October 9, 2014 at 12:23 pm
If you did a cross join between your dates table and your Properties table, it would return all possible combinations of (Property, Date) and that would solve your problem.
...
October 9, 2014 at 11:31 am
In my case, I just used an existing Enroll counts report...
=(Fields!NewEnrolls.Value-Previous(Fields!NewEnrolls.Value))/Fields!NewEnrolls.Value
The fun thing about something like this is that if the NewEnrolls.Value = 0 then you get +/- Infinity... so...
October 8, 2014 at 10:30 pm
Thanks! I told you it was stupid!
October 7, 2014 at 12:31 pm
sturner-926343 (10/7/2014)
Table1
T1_Id
1
2
3
4
Table2
T2_IDT1_ID ...
October 7, 2014 at 8:59 am
... and I'm having a hard time understanding what you want.
Do you mean you're trying to find all the tables that do not contain a column with a given name?...
October 6, 2014 at 11:00 pm
If I select 'Add ->New Item ->Report, it opens a blank report in design mode with no option to add a data source or data set.
Once you have done this,...
October 2, 2014 at 8:27 pm
If you have access to the database, you can do this:
First, you need Jeff Moden's handy DelimitedSplit8K function, which is here[/url].
Then your query would look something like this:
SELECT col1, split.ItemNumber,...
October 2, 2014 at 4:17 pm
Viewing 15 posts - 2,821 through 2,835 (of 3,489 total)