PowerBI: Slicer to filter a table Only when more than 1 value is selected
问题 I have a table with 5 categories and units displayed into 2 types, Actual and budget. I want to filter this table. Only when 2 or more values are selected in the slicer. Something like this. I though of adding a measure, but dont know how to work the if statement exactly. Measure = IF(COUNTROWS(ALLSELECTED(Report[Shipment Group])) = 1, "Something which would not filter the units", SELECTEDVALUE(Report[Units], SUM(Report[Units]))) Not sure if this is correct approach.Would like to know if any