I would like to compare results from one of my shops with the result form all my other shops EXCLUDING the shop in question.
so I have pivot table with [Location Name] as rows. In values I have [Transactions per hour per store] and I have been able calculate the transactions per hour for all shops using
However what i really want is to calculate this excluding the location on that row. For example
Location Trans/h Trans/h for others
A 10 25 (av B&C)
B 20 20 (A&C)
C 30 15 (A&B)
Is this possible ?
Thanks
Mike
so I have pivot table with [Location Name] as rows. In values I have [Transactions per hour per store] and I have been able calculate the transactions per hour for all shops using
Code:
CALCULATE( [Trans per hour per store],ALL(Location[Location Name])
)
However what i really want is to calculate this excluding the location on that row. For example
Location Trans/h Trans/h for others
A 10 25 (av B&C)
B 20 20 (A&C)
C 30 15 (A&B)
Is this possible ?
Thanks
Mike