Viewing 15 posts - 256 through 270 (of 2,278 total)
You might consider dropping your subreports and just adding additional tablix to your report. Once you have done that you can revise your SP to return the data...
October 23, 2012 at 8:28 am
Wow, what an odd problem to have.
Personally I would rather be a bit too busy, than not busy enough. If lack of work was a real pattern I would...
October 23, 2012 at 8:13 am
If it is just a few columns you could use a multi value parameter for each column of data. I did a report where the user had a spreadsheet...
October 11, 2012 at 8:41 am
Is the variable in a scope that can be used by your task?
October 8, 2012 at 8:05 am
Although from an operational point of view I would question the wisdom of using SSRS to export to Excel to be imported by Access, the first thing I would try...
October 8, 2012 at 8:02 am
Stuart Davies (10/8/2012)
rhythmk (10/7/2012)
Cliff Jones (10/5/2012)
SQLRNNR (10/5/2012)
L' Eomot Inversé (10/5/2012)
Cliff Jones (10/5/2012)
SQLRNNR (10/5/2012)
dentalmental
mental caries?
mariah carey (http://www.youtube.com/watch?v=FQt-h753jHI)
Jim Carey (http://www.youtube.com/watch?v=2ic3xNfEP_o)
True Beauty("www.youtube.com/watch?v=7781W7cjupE
") Poetry by Thomas Carew
American Beauty
American Werewolf in London
October 8, 2012 at 7:56 am
What error are you getting?
October 4, 2012 at 8:08 am
Teee (10/4/2012)
How do I collapse/ hide whitespace when "Print on Last Page" is set to False? I'm using SSRS 2008.
In the report When there's no header the...
October 4, 2012 at 8:06 am
I can think of a few ways to do this
SELECT ID.ProductID, Name.ProductName
FROM Table1 AS ID
INNER JOIN Table2 AS Name
ON ID.ProductID = Name.ProductID
or
SELECT ProductID, ProductName
FROM Table2 AS 2
WHERE EXISTS (SELECT *...
October 3, 2012 at 1:16 pm
So probably your best approach is to make the filter for each table the same relative to the current (or requested) date. For example if you run the report...
October 2, 2012 at 11:30 am
Viewing 15 posts - 256 through 270 (of 2,278 total)