Forum Discussion
How to use ConcatenateX values in Filtering Column data
Hi
I want to filter table by using multiple selection list.
- Anonymous4 years ago
Hi Anonymous ,
I have found a similar post, please refer to it to see if it helps you.
Filter table based on slicer with multiselect for a column with combinations
Solutions:
Use the following dax to create new column:
first = LEFT(Data[Combination],1) second = MID(Data[Combination],3,1) third = RIGHT(Data[Combination])Then base on the base table ,create another table:
Table = UNION ( SELECTCOLUMNS ( Data, "Drop Down", Data[first], "Combination", Data[Combination], "value", Data[Value] ), SELECTCOLUMNS ( Data, "Drop Down", Data[second], "Combination", Data[Combination], "value", Data[Value] ), SELECTCOLUMNS ( Data, "Drop Down", Data[third], "Combination", Data[Combination], "value", Data[Value] ) )If I have misunderstood your menaing, please provide your pbix file without privacy information and desired output with more details.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
1 Reply
- AnonymousNot applicable
Hi Anonymous ,
I have found a similar post, please refer to it to see if it helps you.
Filter table based on slicer with multiselect for a column with combinations
Solutions:
Use the following dax to create new column:
first = LEFT(Data[Combination],1) second = MID(Data[Combination],3,1) third = RIGHT(Data[Combination])Then base on the base table ,create another table:
Table = UNION ( SELECTCOLUMNS ( Data, "Drop Down", Data[first], "Combination", Data[Combination], "value", Data[Value] ), SELECTCOLUMNS ( Data, "Drop Down", Data[second], "Combination", Data[Combination], "value", Data[Value] ), SELECTCOLUMNS ( Data, "Drop Down", Data[third], "Combination", Data[Combination], "value", Data[Value] ) )If I have misunderstood your menaing, please provide your pbix file without privacy information and desired output with more details.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.