Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
gusdcruz
Helper I
Helper I

empty rows

Hi,

I have the following sales order, each line is a product
Sales orderSales order

when I try to create a visual with PGM (profit gross margin), I get this useless extra row just because PGM is 0.00. As you can see we do have products with sales tonnage and 0.00 margin, so I want to keep products with tonnage, but I want to remove the products with no tonnage

 

Capture.JPG

 

I tried to go to Query and filter by empty or blank rows, but when I go to query this is what I found.

0% is empty, so I cannt remove empty

Capture.JPG

 

and I cannot removed base on blank, because this option doesnt show up in the list below

Capture2.JPG

Does anyone have a suggestion on how to handle this?

thank you

Gustavo

1 ACCEPTED SOLUTION
edhans
Super User
Super User

Create a measure for Total PGM that would be like this:

Total PGM = 
VAR TotalPGM = SUM(Data[PGM])
RETURN
IF(TotalPGM = 0,BLANK(),TotalPGM)

If PGM is 0, it will return blank and not zero, and won't populate a visual.



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

2 REPLIES 2
edhans
Super User
Super User

Create a measure for Total PGM that would be like this:

Total PGM = 
VAR TotalPGM = SUM(Data[PGM])
RETURN
IF(TotalPGM = 0,BLANK(),TotalPGM)

If PGM is 0, it will return blank and not zero, and won't populate a visual.



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

thank you

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors