I am using a tablix in an rdlc report which uses a flat (Single row datasource), however the values which are displayed are in multiple rows. I need to add alternate row coloring for the same,I cannot use a RowNumber as I am working off a flat dataset. Are there any other approaches I can take ? TIA
相关问题
- Why does SSRS need to recycle the application doma
- Use multiple ReportItems in one expression in RDLC
- How to delete old subscriptions
- QUERY method of Soap request for SSRS and WCF test
- SSL/wallet error trying to access Oracle DB from S
相关文章
- SQL Server Reporting Services - Set default value
- Cannot add a Data Source in web project using the
- Get list of reports from SSRS?
- SSRS tablix column CanGrow property for width?
- The report server cannot process the report or sha
- SSRS 2008 report not working with using a stored p
- External images in .rdlc data reports for winforms
- Dataset with dynamic columns in tablix/matrix
I'm not certain what you are referring to as a flat single row datasource appearing as multiple rows. I am assuming what you actually have is a regular table of values.
You can use a combination of
CountDistinct
andRunningValue
to calculate a row number in the background that you can then use to set the BackgroundColor property of your rows.For example the following expression in the BackgroundColor property of the tablix row
Sets this table to have alternating red and green rows, without editing the datasource at all.