We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 38 | |
| 32 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 66 | |
| 40 | |
| 34 | |
| 25 |