The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
In the following table I only want to show the companies with ranking category TOP and hide ranking category REST, however I still want to show the total of TOP and REST in the total row at the bottom.
Any suggestions on how to achieve this?
Thanks!
Solved! Go to Solution.
@Anonymous - You could do something like this:
Measure 4 = IF(HASONEVALUE('Table (4)'[Column1]),IF(MAX('Table (4)'[Column2])="Rest",BLANK(),SUM('Table (4)'[Column3])),SUMX(ALL('Table (4)'),[Column3]))
See attached PBIX below sig. Page 4, table 4
@Anonymous , refer if these can help
https://community.powerbi.com/t5/Desktop/Top-5-and-others/td-p/165945
https://community.powerbi.com/t5/Desktop/Top-10-Other/td-p/51282
@Anonymous - You could do something like this:
Measure 4 = IF(HASONEVALUE('Table (4)'[Column1]),IF(MAX('Table (4)'[Column2])="Rest",BLANK(),SUM('Table (4)'[Column3])),SUMX(ALL('Table (4)'),[Column3]))
See attached PBIX below sig. Page 4, table 4
Thanks for your help.