Viewing 12 posts - 16 through 28 (of 28 total)
I'm having (what I think is) the same issue-- how to suppress an entire matrix row when there is a particular value. Visibility is not a property when you...
May 6, 2008 at 10:19 am
Figured it out:
=Iif(me.Value < 0,"Red","Black")
I've never used "me.Value" before-- neat trick!
May 2, 2008 at 3:43 pm
AWESOME!!! I have a feeling I'll come back to this thread in about 6 months when the issue pops up again and I forgot what works. Thanks for...
March 21, 2008 at 10:11 am
Yes, one thought that had crossed my mind was (using my previous table result example) to include rows with precalculated (through SQL) results and hand pick what gets averaged vs...
March 21, 2008 at 6:44 am
As Neils said, I'm working off existing data which is a culmination of some hefty stored procedures.
But most importantly the format required is more like this:
...
March 20, 2008 at 3:39 pm
Right click your row, insert / make sure you have a table footer.
The Membercity column footer should be:
=Sum(Fields!MEMBERCITY.Value)
Right click your second column (CITY), insert a column to the right, call...
March 20, 2008 at 2:19 pm
Niels, I'm thrilled to hear RS 2008 features can do this; we'll be rolling that out in a few months. Your links will help me hit the ground running.
Since...
March 19, 2008 at 4:19 am
[and one more variation --cheating off your case syntax]:
SELECT *
FROM tblData
WHERE (
(@Quarter = 1 and MonthID IN (1,2,3))
OR (@Quarter = 2 and MonthID IN (4,5,6))
OR (@Quarter = 3 and...
March 18, 2008 at 1:16 pm
Wow, I totally bow to you.
I love 'CASE' statements-- this particular format of WHERE CASE is new to me.
(I could never find good examples of it)
I will...
March 18, 2008 at 1:08 pm
Oh my gosh, that's embarassing. I didn't even think about just pre-processing the columns before hitting the report. I really appreciate your response--it will help tremendously.
March 18, 2008 at 9:08 am
Viewing 12 posts - 16 through 28 (of 28 total)