Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a table with two columns of responsibles of a Proyect.
Is possible to slice my data with the two columns independently?
For example: When I selected "Ale" the slicer shows the data in wich Ale appears in both columns RESPONSABLE and RESPONSABLE 2?
At now, when I selected "Ale" just shows the data of the column RESPONSABLE
Thanks in advanced
Solved! Go to Solution.
Hi @ponchibonos ,
In addintion to lbendlin's reply, you need to create an unrelated DIMRESPONABLE table and then create a measure to filter your visual.
DIMRESPONSABLE =
DISTINCT (
UNION ( VALUES ( 'Table'[RESONSABLE] ), VALUES ( 'Table'[RESONSABLE 2] ) )
)
Measure:
Filter =
VAR _SELECTED =
VALUES ( DIMRESPONSABLE[RESONSABLE] )
RETURN
IF (
MAX ( 'Table'[RESONSABLE] )
IN _SELECTED
|| MAX ( 'Table'[RESONSABLE 2] ) IN _SELECTED,
1,
0
)
Add this measure into visual level filter and set it to show items when value = 1. Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @ponchibonos ,
In addintion to lbendlin's reply, you need to create an unrelated DIMRESPONABLE table and then create a measure to filter your visual.
DIMRESPONSABLE =
DISTINCT (
UNION ( VALUES ( 'Table'[RESONSABLE] ), VALUES ( 'Table'[RESONSABLE 2] ) )
)
Measure:
Filter =
VAR _SELECTED =
VALUES ( DIMRESPONSABLE[RESONSABLE] )
RETURN
IF (
MAX ( 'Table'[RESONSABLE] )
IN _SELECTED
|| MAX ( 'Table'[RESONSABLE 2] ) IN _SELECTED,
1,
0
)
Add this measure into visual level filter and set it to show items when value = 1. Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks @Anonymous this was the solution.
You need to use disconnected slicers if you want independent filters.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |