Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi,
I have the following sales order, each line is a productSales 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
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
and I cannot removed base on blank, because this option doesnt show up in the list below
Does anyone have a suggestion on how to handle this?
thank you
Gustavo
Solved! Go to Solution.
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.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingCreate 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.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reportingthank you
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 40 | |
| 35 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 71 | |
| 70 | |
| 38 | |
| 35 | |
| 23 |