Forum Discussion
Slicer Control
- 8 years ago
This might take some time as you would have to adjust each of the measures that feed into your visualizations.
I would start with creating a parameter table and assigning an arbitrary numeric value to each display type you'd like. For example:
Display | Value
$$ 1
EA 2
KG 3
Then create a measure that returns the value, such as the following:
DisplayValue := Max(ParameterTable[Value). Then place the "Display" column as a slicer, allowing users to select any of the displays. Their input will return a value that you can then use to adjust measures.
Say you want to show the sum of each of those. You can write a measure such as this.
Switch(
[DisplayValue],
1, sum(Sales[Net Value],
2, sum(Sales[Net Qty],
3, sum(Sales[NetWeight[Kg])
)
Obviously you would have to tailor this to each of your existing measures, but the general idea stands. Good luck!
This might take some time as you would have to adjust each of the measures that feed into your visualizations.
I would start with creating a parameter table and assigning an arbitrary numeric value to each display type you'd like. For example:
Display | Value
$$ 1
EA 2
KG 3
Then create a measure that returns the value, such as the following:
DisplayValue := Max(ParameterTable[Value). Then place the "Display" column as a slicer, allowing users to select any of the displays. Their input will return a value that you can then use to adjust measures.
Say you want to show the sum of each of those. You can write a measure such as this.
Switch(
[DisplayValue],
1, sum(Sales[Net Value],
2, sum(Sales[Net Qty],
3, sum(Sales[NetWeight[Kg])
)
Obviously you would have to tailor this to each of your existing measures, but the general idea stands. Good luck!