Viewing 15 posts - 16 through 30 (of 88 total)
martin.griffiths (10/1/2008)
Thanks. Do you mean I can put the name of a stored procedure in the default value box for the date parameter?
Never tried that but I don't think it...
October 1, 2008 at 8:47 am
Martin,
There is not a way to do what you want in SSRS 2000 or 2005 (not sure on 2008). You'll need to create a second version of your report...
October 1, 2008 at 8:02 am
I doubt it. If you're running the standard or better edition you should have it. We've always run the standard version.
I'm not the database or network guy here...
September 26, 2008 at 1:11 pm
I'm sorry my friend but the books and BOL are not wrong. There are four image options.
We no longer run SSRS2000, having upgraded to 2005 however, I know for...
September 26, 2008 at 12:53 pm
John,
This query of the ReportServer database on your server should get you started:
select DISTINCT
c.name as ItemName,
Rolename AS 'Role',
u.username AS 'User',
CASE c.type WHEN 1 THEN 'Folder' ELSE 'Report'...
September 23, 2008 at 10:34 am
John,
First, make sure of your spelling. Hopefully you have "silver" and not "sliver" in your actual expression.
Second, make sure you have the expression in the background color property for...
September 22, 2008 at 10:29 am
Peter,
Try this:
1. Create a calculated field called PosQty as
=IIF(Fields!ADJUST_QTY.Value > 0, Fields!ADJUST_QTY.Value,0)
2. Create a second calculated field called PosCost as
= IIF(IIF(Fields!ADJUST_QTY.Value > 0, Fields!ASTD_TOTAL_COST.Value,0)
3. For...
September 16, 2008 at 7:18 am
Can you share your IIF expression? And the error message and/or result you're getting when you attempt to sum the Value column.
Depending on what you've written or are getting...
September 15, 2008 at 8:52 am
There is a LIKE VB operator so you should be able to use that. Take a look here: http://msdn.microsoft.com/en-us/library/swf8kaxw(VS.71).aspx
September 10, 2008 at 9:53 am
Here's what I'd try.
Set up a first parameter that selects either Dept. or Location. Trigger the Dept. or Location parameters from that.
HTH
September 2, 2008 at 10:08 am
What you've run into is not necessarily an SSRS issue although it manifests itself there a lot. Especially when using IIF to catch divide by zero conditions.
The problem is...
September 2, 2008 at 9:54 am
Documentation for SWITCH() is here
http://msdn.microsoft.com/en-us/library/dft2z9yf(VS.71).aspx
VB functions in general here
http://msdn.microsoft.com/en-us/library/32s6akha(VS.71).aspx
Happy hunting!! 😀
August 27, 2008 at 6:17 am
Read the very last entry in this thread.
August 26, 2008 at 1:18 pm
John,
Try using SWITCH(). It looks at pairs of comma delimited conditions (first half of pair is check condition, second half is true result) and selects the result based on...
August 26, 2008 at 8:24 am
Viewing 15 posts - 16 through 30 (of 88 total)