Forum Discussion
Slicer to Column relationship
- 5 years ago
Add a calculated column to your table like this.
Nomination matches Job Family = CONTAINSSTRING('Table'[Nomination],'Table'[Job Family])It will return true when the nomination contains the job family:
Then you use that as filter on your report page.
Job Family is a slicer populated with the values from a column in your model correct? When you say they come from the same data source what do you mean, do you only have one table of data? Can you share a screen shot of your model layout and the list of fields in the tables?
yes, I only have one table of data. Job Family and Nominations are columns within the same data table.
- jdbuchanan715 years ago
Super User
OK, then your slicer is already related to the field. When you pick a job family in the slicer what that does is apply a filter to the table where only the selected job families are returned. It will only show nominations where the job family is the ones you selected.
- mmills20185 years ago
Helper IV
So, within my data, you can have a job family of IT but a nomination for HR. So, I only want to pull those who have a job family of IT and a nomination of IT
- jdbuchanan715 years ago
Super User
Add a calculated column to your table like this.
Nomination matches Job Family = CONTAINSSTRING('Table'[Nomination],'Table'[Job Family])It will return true when the nomination contains the job family:
Then you use that as filter on your report page.