Hi experts!
I'm using excel addin version 10.0 SP07 Patch 02 .NET4 Build 7222
I have on report that on rows has an item dimension and customer dimension.
So I can see rows like this:
ITEM1---CUSTOMER1:50
ITEM1---CUSTOMER2:100
ITEM1---CUSTOMER3:25
ITEM2---CUSTOMER1:30
ITEM2---CUSTOMER3:30
ITEM3---CUSTOMER1:50
ITEM3---CUSTOMER4:50
ITEM3---CUSTOMER6:100
I need two total in this report.
My first Total is using FAMILY Property.
ITEM 1 and ITEM 2 belongs to FAMILY 1 and ITEM3 belongs to FAMILY 2
So I can use Member Sorting and Groupind editing my report
=SUBTOTAL(9,EPM_SAME_PROPERTY(ITEM,FAMILY))
So my result is fine:
FAMILY1------------------------235
ITEM1---CUSTOMER1:50
ITEM1---CUSTOMER2:100
ITEM1---CUSTOMER3:25
ITEM2---CUSTOMER1:30
ITEM2---CUSTOMER3:30
FAMILY2-------------------------200
ITEM3---CUSTOMER1:50
ITEM3---CUSTOMER4:50
ITEM3---CUSTOMER6:100
My problem is that I have to add another subtotal:
I need a new subtotal by ITEMS but I don't know how to add another group editing report.
Result of my report should be:
FAMILY1------------------------235
ITEM1TOTAL------------------175
ITEM1---CUSTOMER1:50
ITEM1---CUSTOMER2:100
ITEM1---CUSTOMER3:25
ITEM2TOTAL-------------------60
ITEM2---CUSTOMER1:30
ITEM2---CUSTOMER3:30
FAMILY2-------------------------200
ITEM3TOTAL-------------------200
ITEM3---CUSTOMER1:50
ITEM3---CUSTOMER4:50
ITEM3---CUSTOMER6:100
Any help with this problem?
Thanks!!!