Viewing 15 posts - 31 through 45 (of 172 total)
Or hide the column instead of the whole group. Right click the column header and select Column Visibility.
May 29, 2012 at 6:18 pm
Maybe instead of expressions to hide the columns based on the param value, leave the columns visible but set the field expression to only display data based on the parameter....
May 11, 2012 at 6:13 pm
mldardy (5/11/2012)
One other thing, when I add the =Code.DivideBy... there is a red squiggly line under 'DivideBy', and it says unrecognized identifier when hovering over it.
It'll do that -...
May 11, 2012 at 6:08 pm
except I would use this as my embeded code instead because it tests first for the whether or not the input is a number.
Cool! Thanks!
May 11, 2012 at 6:03 pm
You should be able to query the ReportServer database to find what you need. I don't have access to a report server right now so I can't give you...
May 11, 2012 at 5:59 pm
Never give up! The entertainment value is priceless! 😀
Edit: In retrospect I realize this probably sounded snotty and/or demoralizing. What I meant to convey is that...
May 11, 2012 at 5:52 pm
Mebbe just join on the LEFT 12?
select left(Sub, 12), P_NAME
from dbo.mydb (nolock)
where left(Sub, 12) = @SUB
or if the parameter is longer than 12...
where left(Sub, 12) = left(@SUB,12)
May 10, 2012 at 6:43 pm
im_lanie (5/10/2012)
May 10, 2012 at 6:35 pm
The data sources must also be deployed to the report server.
May 10, 2012 at 6:31 pm
It is most likely a divide by zero error.
Add custom code to rdl (report properties --> code pane):
Public Function DivideBy(ByVal Numerator, ByVal Denominator)
If Denominator = 0 Then
DivideBy =...
May 10, 2012 at 6:29 pm
pdanes (5/10/2012)
May 10, 2012 at 6:08 pm
Take a look at the Stairways - Stairway to Reporting services on this site
http://www.sqlservercentral.com/stairway/72382/
Books on line are pretty good for this subject
May 9, 2012 at 7:22 pm
Add custom code to rdl (report properties --> code pane):
Public Function DivideBy(ByVal Numerator, ByVal Denominator)
If Denominator = 0 Then
...
May 9, 2012 at 7:08 pm
Looks like the Gurae have not responded, so you're stuck with me.. 😛
To show a list of the selected parameters, you'd use field expression:
=Join(Parameters!Project.Value,", ")
or to show the labels:
=Join(Parameters!Project.Label,",...
March 26, 2012 at 6:34 pm
Might be a divide by zero error. See the 3rd response (from Toolman) in this post:
http://www.sqlservercentral.com/Forums/Topic537901-150-1.aspx
March 26, 2012 at 5:47 pm
Viewing 15 posts - 31 through 45 (of 172 total)