Forum Discussion
Anonymous
4 years agoNot applicable
Create two columns one Static and one Dynamic off Slicers
Hi, I want to create two columns in a matrix that has one that is static and not affected by a slicer and one that is dynamic based off the slicer. I tried creating a New Table with two groups "All"...
- 4 years ago
Anonymous , Try like, new measure
Net Profit $ CY Avg, Whole Group =
,if(selectedvalues('Selected Groups'[Groups]) = "All",
CALCULATE(
[Net Profit $ CY Avg.],
ALL(DealerMonthlyFinancials[Dealer Number])
) , [Net Profit $ CY Avg.] )
amitchandak
Super User
4 years agoAnonymous , Try like, new measure
Net Profit $ CY Avg, Whole Group =
,if(selectedvalues('Selected Groups'[Groups]) = "All",
CALCULATE(
[Net Profit $ CY Avg.],
ALL(DealerMonthlyFinancials[Dealer Number])
) , [Net Profit $ CY Avg.] )