Viewing 15 posts - 16 through 30 (of 49 total)
Hi,
If the error is something like "failed to evaluate filter expression" then it's likely due to the fact that SSRS apparently does not implicitly cast numeric values. Try using...
December 1, 2009 at 4:47 pm
That's right. Your target machines will not require SQL Server, SQL Express, or SSRS installed on them. ReportViewer is a standalone redistributable form control (cf. my link above). It renders...
November 30, 2009 at 5:31 pm
Hi. This is a common requirement. Probably what you need is this expression in the textbox:
=Join(Parameters!YourParameterName.Label, ", ")
OR
=Join(Parameters!YourParameterName.Value, ", ")
depending which you want to display.
Note that the (0) in...
November 30, 2009 at 4:39 pm
I find it's a minimum of trouble to write a simple Windows Forms app and use the ReportViewer control in Local mode against a BindingSource connected to the Access database....
November 30, 2009 at 4:30 pm
The following SSC article may put you on the right track:
http://www.sqlservercentral.com/articles/Reporting+Services+(SSRS)/63415/[/url]
November 10, 2009 at 4:04 pm
You can use something like this in the header textbox, if the two parameter values will never change:
=IIF(Parameters!pathway.Value = "NONAdmitted patients 18 weeks", "NONAdmitted", "Admitted")
October 7, 2009 at 7:38 pm
Try the following expression in the BackgroundColor property of the matrix cell:
=IIF(Not(InScope("matrix1_rowCategory")) And Sum(Fields!cellvalue.Value) <= 20, "Red", Nothing)
where matrix1_rowCategory is the name of your matrix's row category, and cellvalue is...
September 21, 2009 at 10:33 pm
Most likely you will want to put a conditional expression in the BackgroundColor property of the matrix cell, which tests both the value in the cell and whether it is...
September 21, 2009 at 5:54 pm
Hi,
Thanks for showing a data sample. I assume you're using SSRS 2005, since customizing header groups like this is apparently a lot easier to do in SSRS 2008 within...
July 27, 2009 at 6:19 pm
andrewgoodwin (7/23/2009)
not really bothered about the date
Hi Andy,
Then leave the date out of the items returned in your query, and keep it in the WHERE clause:
SELECT LEFT(SLCustomerAccount.CustomerAccountNumber, 4) AS [Account...
July 23, 2009 at 2:26 am
Hi!
I think what you're asking is a T-SQL question. You'll probably get an error if you use HAVING without an aggregate expression. Why don't you put the conditions in a...
July 22, 2009 at 10:22 pm
tsmith (7/17/2009)
July 19, 2009 at 9:09 pm
I tend to do this using special characters, one of two ways:
1. Using the same text font as the rest of the report, I put a bullet character (•) for...
July 6, 2009 at 5:57 pm
Yes, you can apply a border property to a whole matrix group by first selecting the group in the designer. But if you've got more than one group, you may...
July 1, 2009 at 6:02 pm
Viewing 15 posts - 16 through 30 (of 49 total)