reporting services - How to manage odd record(s) in SSRS? -
my ssrs report dataset generates 6 colums shown below. report grouped repname. portfolio column populated either , b. regular name , b odd name. whenever there b, change background color of particular cell red , move odd record(s) top when report runs. tips appreciated.
repname appid dealername buyername amtfinc portfolio
conditional formatting of cell background
right-click
portfoliofield access properties
open expression editor
fill color:onfilltab
enter expression evaluate value of
portfoliofield , set color appropriate.
sorting
you have 2 options sorting results, either in dataset or in table/matrix on report. test see works best situation.
dataset sort
assuming column name portfolio in database, add following dataset query:
order portfolio desc; tablix sort
right-click tablix in report design:

set descending sort on
portfoliofield:
keep in mind if want all rows portfolio value of b sort @ top of report, you'll need remove repname grouping. see sample output:
grouped

not grouped

Comments
Post a Comment