I have a slicer that filters a list based on names, the same table that the slicer references has a column for sport, i want to filter the names in a table based on the sport that corresponds the selected name on the slicer i.e if the name chosen plays a particular sport, i want the table to show the list of all the names that play the same sport as the selected name
I tried using this measure as a filter (I'm new to power Bi in case it looks crazy) and it didn't work: Measure = IF( HASONEVALUE('General info'[Name]), MAX( CALCULATETABLE( FILTER('General info', 'General info'[Sport] = SELECTEDVALUE('General info'[Sport])), ALL('General info'[Name]) ) ), BLANK() )