I have the following dataset:
State ZIP Homes Schools
WA 98007 2000 4
WA 98052 3000 5
WA 98079 2000 3
Now if I have set the group by expression on State but as display if I want to show it as “[98007, 98052, 98079]” how can I accomplish this.
My report needs to show:
State Homes Schools
[98007, 98052, 98079] 7000 12
Any help will be greatly appreciated
SPJ11, Why dont you do this in SQL itselves? You can also do this in SSRS. At the group level use,
Sum(Fields!Homes.value), Sum(Fields!Schools.value) -- these will retun the counts correctly.
I am not sure as how to concatnate the zip codes. I thought this should work
Join(Fields!Zip.Value) -- but this does not seem to work, I will see if I can come with something else...
|||Never mind. I could make it work. Thanks to everyone who spent time on this thread
sqlsql
No comments:
Post a Comment