Create a calculated field in RS that groups the zones:
IIF(fields!zone.value = "North" or fields!zone.value = "West",
"RegionA", "RegionB")
Then create a group based on that calculated field.
> Hi,
>
[quoted text clipped - 3 lines]
> EggHeadCafe.com - .NET Developer Portal of Choice
> http://www.eggheadcafe.com
Andrei - 29 Nov 2006 18:42 GMT
Or, you can create 2 calculated fields that hold the sum for N+S, E+W, like
this:
fldNS = sum(iif(fields!zone.value = "North" or fields!zone.value = "South",
SalesValue, 0))
fldEW = sum(iif(fields!zone.value = "East" or fields!zone.value = "West",
SalesValue, 0))
Andrei.
> Create a calculated field in RS that groups the zones:
>
[quoted text clipped - 13 lines]
>> EggHeadCafe.com - .NET Developer Portal of Choice
>> http://www.eggheadcafe.com