Viewing 15 posts - 2,851 through 2,865 (of 3,482 total)
"but that didn't work because the selected DateGroup column needs to show even if there is no data for it."
If you outer join the DateGroup columns to the other data,...
September 25, 2014 at 8:47 am
Not entirely sure where your columns start and stop...
Could you provide a CREATE TABLE script and some INSERT scripts to populate your table?
Or something like this? It's just hard...
September 25, 2014 at 2:16 am
What kind of value are you trying to pass to the main report? A total of some kind?
September 25, 2014 at 12:44 am
could you post some sample data? Maybe a create table and insert scripts so we can see what you're doing? it looks like you can use a Matrix to...
September 24, 2014 at 11:01 pm
You would have to open a parameterized report and pass that parameter value, right?
September 24, 2014 at 5:53 pm
Are the queries already in SQL Server (as views or stored procedures), or are they completely ad hoc and being written by the people using Excel? One way might...
September 24, 2014 at 5:52 pm
Funny, I would have thought the SSIS solution would be perfect. It even has the Excel destination that you could configure... Execute a stored procedure? Nothing doing. ...
September 24, 2014 at 4:51 pm
I need a query to fill in the data for each Calendar_Month. This should look at the actindx column and Calendar_Month column if there is no data for a specific...
September 24, 2014 at 4:39 pm
Very true... I was probably having flashbacks to "databases" created by people that didn't have a clue what they were doing... so a LOT of cleanup was required... in that...
September 24, 2014 at 1:38 pm
One way would be to create a stored procedure to do the import/massage of data and then schedule that in a Job. Then if the Job executes on an...
September 24, 2014 at 10:34 am
This part looks iffy:
CDate(Fields!Month_Name.Value + " 01, "+Fields!Financial_Year.Value)
Why not use DateSerial(Year,Month,Day)?
September 23, 2014 at 11:30 am
Sounds like you could do this with a parameterized query (so a stored procedure) with a join between the two tables in question.
September 17, 2014 at 9:21 pm
one way...
SELECT [Reason1] AS Reason, [Comments1] AS Comments
FROM [mytable]
UNION ALL
SELECT [Reason2], [Comments2]
FROM [mytable]
WHERE [Reason2] IS NOT NULL
UNION ALL
SELECT [Reason3], [Comments3]
FROM [mytable]
WHERE [Reason3] IS NOT NULL
then you won't have repeating...
September 16, 2014 at 4:12 pm
One way to do it might be to store the T1 total in a variable, and then just divide by that variable in your T2 tablix.
September 16, 2014 at 12:18 pm
normally, you would do this WITH ROLLUP in T-SQL.
http://technet.microsoft.com/en-us/library/ms189305(v=sql.90).aspx
September 16, 2014 at 8:20 am
Viewing 15 posts - 2,851 through 2,865 (of 3,482 total)