It can be achieved depending on the result you want to show for the filtered rows, e.g, a sum, average, count, etc.
I will show you a very simple example of a sum for the filtered rows by using the SUMX function available in DAX expressions.
| Sport | Value | 
| Basketball | 4 | 
| Football | 11 | 
| Basketball & Football | 9 | 
Sliver column:
Result =
SUMX (
    FILTER (
        MyTable,
        [Sport] = FIRSTNONBLANK ( SlicerTable[SlicerColumn], 0 )
            || FIND ( FIRSTNONBLANK ( SlicerTable[SlicerColumn], 0 ), [Sport], 1, -1 ) > -1
            || NOT ISFILTERED ( SlicerTable[SlicerColumn] )
    ),
    [Value]
)