Theoretically basic RDLC question
Posted
by user86431
on Stack Overflow
See other posts from Stack Overflow
or by user86431
Published on 2010-04-13T16:47:05Z
Indexed on
2010/04/14
18:03 UTC
Read the original article
Hit count: 537
I'm trying to do something that I thought ought to be reasonably simple but I keep failing... Maybe I just need more coffee, but I thoguht i see if anyone else has solved the problem already.
I've got a report, it contains a pile off rows.
- I want the row to show up grouped by one column called office.
- I want the groups of offices sorted by their column region.
- I want the rows within the office group sorted by column name.
so it'd show up like this
Region1 Agency a a b c Agency b a b Region 2 Agency a1 a b c
etc...
I can get the grouping, I can get the groups sorted by region.
but I can't get the contents of the group to be sorted by name.
my curret guess was Group by Office then in the sort tab, sort by region, then office, then name. no joy.
Any help is appreciated.
if it's relavant I'm using c# and vs2008.
Thanks,
E-
© Stack Overflow or respective owner