Forum Discussion
Creating filter for multiple values in one column
- 3 years ago
One way to approach it would be to create a second table with your colors, but do not relate it to the original table. Use this table as the filter.
Create a measure that looks for the selected value in the color table and and then looks in the color preference column for that value.
filteredNames =
var _selectedColor =
IF(
HASONEVALUE(colors[Color]),
SELECTEDVALUE(colors[Color])
)
var _nameCalc =
CALCULATE(
MIN('Table'[Name]),
FILTER('Table', CONTAINSSTRING('Table'[Color Preference], _selectedColor))
)
Return
_nameCalcAs long as you keep the color preference column in your table you will get the result you are looking for.
One way to approach it would be to create a second table with your colors, but do not relate it to the original table. Use this table as the filter.
Create a measure that looks for the selected value in the color table and and then looks in the color preference column for that value.
filteredNames =
var _selectedColor =
IF(
HASONEVALUE(colors[Color]),
SELECTEDVALUE(colors[Color])
)
var _nameCalc =
CALCULATE(
MIN('Table'[Name]),
FILTER('Table', CONTAINSSTRING('Table'[Color Preference], _selectedColor))
)
Return
_nameCalc
As long as you keep the color preference column in your table you will get the result you are looking for.