I want to show the revenue for the benchmarkamrking stores.
I had previously created an inactive relationship and used the metric on it but it didn’t work. I’m asking for help.
Thanks for providing a sample PBIX! I’ll start with a quick tip and best practice. Please make a habit of always creating measures and not to drag & drop numeric fields in your visuals.
So the first basic measure is just a sum of the sales revenue column.
Revenue Measure =
SUM( Sales[Revenue] )
.
and the second just branching out and changing the calculation context to the StoreID_Bench.
Revenue Bench Store =
VAR myStore = VALUES( Store_Benchmarking[StoreID_Bench] )
VAR Result = CALCULATE( [Revenue Measure] | ALL(Sales) | Sales[StoreID] IN myStore )
RETURN
Result
.
To get you started quickly, please go over these tutorials: