Forum Discussion
Filtered Drop Down in sclicer
- Anonymous1 year ago
Hi chintusasmal123,
Thanks for reaching out to the Microsoft fabric community forum.
From what you've described, you have a table where SH, UH, and LM are stored in separate columns along with the department name, and you are using a slicer based on a separate table where these names are flattened into a single column.
The challenge here is that the slicer (based on the flattened table) doesn’t have a direct relationship to the SH/UH/LM columns individually, so selecting a name from the slicer doesn't filter the department data as expected.
To get this working, you'll need a way to check if the selected name from the slicer matches any of the SH, UH, or LM columns in your main table. This typically involves creating a calculated column or measure that performs the check using DAX. Once try this :
IsSelected =
VAR SelectedName = SELECTEDVALUE(FlattenedTable[Name])
RETURN
IF (
SelectedName IN {
EmployeeTable[SH],
EmployeeTable[UH],
EmployeeTable[LM]
},
1,
0
)Then, you can use this logic to filter your visuals or build a measure that only shows departments where the selected person appears in any of the hierarchy levels.
I would also take a moment to thank danextian and ryan_mayu, for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.
If I misunderstand your needs or you still have problems on it, please feel free to let us know.
Best Regards,
Hammad.
Community Support TeamIf this post helps then please mark it as a solution, so that other members find it more quickly.
Thank you.
Hi chintusasmal123,
Thanks for reaching out to the Microsoft fabric community forum.
From what you've described, you have a table where SH, UH, and LM are stored in separate columns along with the department name, and you are using a slicer based on a separate table where these names are flattened into a single column.
The challenge here is that the slicer (based on the flattened table) doesn’t have a direct relationship to the SH/UH/LM columns individually, so selecting a name from the slicer doesn't filter the department data as expected.
To get this working, you'll need a way to check if the selected name from the slicer matches any of the SH, UH, or LM columns in your main table. This typically involves creating a calculated column or measure that performs the check using DAX. Once try this :
IsSelected =
VAR SelectedName = SELECTEDVALUE(FlattenedTable[Name])
RETURN
IF (
SelectedName IN {
EmployeeTable[SH],
EmployeeTable[UH],
EmployeeTable[LM]
},
1,
0
)
Then, you can use this logic to filter your visuals or build a measure that only shows departments where the selected person appears in any of the hierarchy levels.
I would also take a moment to thank danextian and ryan_mayu, for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.
If I misunderstand your needs or you still have problems on it, please feel free to let us know.
Best Regards,
Hammad.
Community Support Team
If this post helps then please mark it as a solution, so that other members find it more quickly.
Thank you.
- Anonymous1 year agoNot applicable
Hi chintusasmal123,
As we haven’t heard back from you, so just following up to our previous message. I'd like to confirm if you've successfully resolved this issue or if you need further help.
If yes, you are welcome to share your workaround and mark it as a solution so that other users can benefit as well. If you find a reply particularly helpful to you, you can also mark it as a solution.
If you still have any questions or need more support, please feel free to let us know. We are more than happy to continue to help you.
Thank you for your patience and look forward to hearing from you.- Anonymous1 year agoNot applicable
Hi chintusasmal123,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution so that other community members can find it easily.
Thank you.- Anonymous1 year agoNot applicable
Hi chintusasmal123,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.