Forum Discussion
Removing empty fields rows
Hi Igotzepowerbi ,
You can utilize a combination of slicers and DAX measures to ensure that only the product classes with data associated with the selected Product Manager are displayed.
Have a try please.
Create a measure.
ProductClassValue = CALCULATE(SUM('YourDataTable'[YourValueColumn]), ALL('YourDataTable'[ProductClassColumn]))
Use the DAX measure you created as a filter on your summary and chart visuals. Set the filter to show items when 'ProductClassValue' is greater than 0. This will ensure that only product classes with data are displayed.
If I have misunderstood your meaning,please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.