Forum Discussion
Calculation Group impact on other measures
- 1 year ago
This is expected behaviour. The slicer will apply to all visuals on the page unless you turn it off through Edit Interactions. Calculation items are applied to all measures, and so when you choose one in the slicer it will be applied to the test measure.
You can change which measures the calcultion item affect by putting checks in the calc item code using functions like SELECTEDMEASURENAME or ISSELECTEDMEASURE.
This is expected behaviour. The slicer will apply to all visuals on the page unless you turn it off through Edit Interactions. Calculation items are applied to all measures, and so when you choose one in the slicer it will be applied to the test measure.
You can change which measures the calcultion item affect by putting checks in the calc item code using functions like SELECTEDMEASURENAME or ISSELECTEDMEASURE.
- mikemagill1 year ago
Helper I
Perfect. That's what I was missing.
I can now limit the scope of my calculated items. I've used code similar to the following:Group Min =IF(ISSELECTEDMEASURE([Placeholder Measure]),[Min],SELECTEDMEASURE())