Viewing 15 posts - 31 through 45 (of 49 total)
Eric, if your answer to Jack's first question is Yes, it may be as simple as changing the condition as follows:
=iif(Fields!MetricSort.Value = 1 Or IsNothing(Fields!MetricSort.Value), "2pt", "1pt")
June 30, 2009 at 5:59 pm
Excellent - thank you for posting your results. This is something I had not seen or tried before.
June 23, 2009 at 5:01 pm
You should be able to do that in the report. Create a table group that groups on all columns except Component_Value (screenshot attached). The value in each cell except the...
June 22, 2009 at 7:04 pm
You can "freeze" the table header by setting the table's FixedHeader property to True, but I don't think you can freeze a table column. If you restructure your data and...
June 22, 2009 at 6:10 pm
John,
If what you're saying is that the Tool tip does not show up in the Preview tab of the report designer, try deploying the report and viewing it in Report...
June 17, 2009 at 5:51 pm
Assuming this is inside a SSRS report, you can add text, or an expression that evaluates to text, to the ToolTip property of the textbox containing the hyperlink action.
June 16, 2009 at 5:14 pm
dmounday (6/11/2009)
It would be nice if SSRS could do event statements like VB....
Aye, there's the rub. I have thought the same thing on a number of occasions. Sometimes the solution...
June 11, 2009 at 6:19 pm
Set the Visibility > ToggleItem property of each table to a single textbox control.
June 10, 2009 at 12:19 am
Is it possible to put everything from your 10 worksheets into a single SSRS report? If you were able to craft them into a series of separate tables in the...
June 9, 2009 at 5:38 pm
If you're using SQL Server 2005 or later, using the ROW_NUMBER() function as an extra column in your SQL query would let you use the number in Report Builder as...
June 1, 2009 at 5:52 pm
I've had similar errors when the Oracle Client tnsnames.ora on the report server specifies different connection info to that of the tnsnames.ora on my development machine. Do yours match?
May 28, 2009 at 7:15 pm
Well done. You can also make it work for both a zero-length string "" and a spaced string " " by inserting the Trim function:
=IIF(Len(Trim(Fields!ANNDEDDSC.Value)) = 0 And Fields!ANNDEDUCT.Value =...
May 27, 2009 at 10:40 pm
This is one expression you could use for the cell value:
=IIF(Len(Fields!ANNDEDDSC.Value) = 0 And Fields!ANNDEDUCT.Value = 0, Nothing, Fields!ANNDEDDSC.Value & " " & Format(Fields!ANNDEDUCT.Value,"N2"))
May 26, 2009 at 10:29 pm
The simplest way is to enter a message in the matrix's NoRows property, which can have its text formatted using the matrix's Font properties, etc. If you want more...
May 26, 2009 at 6:06 pm
kabolick (1/20/2009)
May 19, 2009 at 8:43 pm
Viewing 15 posts - 31 through 45 (of 49 total)