Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi I am working off a "master data list" which consists of merges of several data lists to create a Dashboard. I have two name fields in the master list which are used to filter the visuals. For ease of use, I would like to create two name slicers that consist of the name set of individual names and sync them into one. However, when I tried to do it, the single slicer is not giving me the right counts, it seems that there's a hierarchy given to one of the name fields.
The name fields are "ACTION SOLICITOR NAME" and "PROSMGR SOLICITOR NAME."
Since the two name fields are on the same master list, when I click on the individual name field slicer, it affects all of the visuals too. Is there a way to make one slicer for the names and then have the names display the visuals according to what the individual slicer intends to?
Solved! Go to Solution.
Hi, @cinsbox
You can try the following methods.
Sample data:
Create a table with only Name as a slicer.
Slicer = UNION(VALUES('Table'[ACTION SOLICITOR NAME]),VALUES('Table'[PROSMGR SOLICITOR NAME]))
Measure =
IF (
OR (
SELECTEDVALUE ( Slicer[Slicer] ) = SELECTEDVALUE ( 'Table'[ACTION SOLICITOR NAME] ),
SELECTEDVALUE ( Slicer[Slicer] ) = SELECTEDVALUE ( 'Table'[PROSMGR SOLICITOR NAME] )
),
1,
0
)
Hope this method helps you.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi there, This post is very helpful.
Example:
Current measure that only works for [Division]:
Many thanks!
Hi, @cinsbox
You can try the following methods.
Sample data:
Create a table with only Name as a slicer.
Slicer = UNION(VALUES('Table'[ACTION SOLICITOR NAME]),VALUES('Table'[PROSMGR SOLICITOR NAME]))
Measure =
IF (
OR (
SELECTEDVALUE ( Slicer[Slicer] ) = SELECTEDVALUE ( 'Table'[ACTION SOLICITOR NAME] ),
SELECTEDVALUE ( Slicer[Slicer] ) = SELECTEDVALUE ( 'Table'[PROSMGR SOLICITOR NAME] )
),
1,
0
)
Hope this method helps you.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
75 | |
63 | |
51 | |
48 |
User | Count |
---|---|
211 | |
86 | |
64 | |
59 | |
56 |