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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
bowz1977
New Member

How To Remove Empty Quarter From Chart Chart

I have a measure setup to calculate the Margin % that i've charted out, the data does not start until 6/2021.

 

How do I get the chart to start at 6/1 (Q2) vs. Q1 so I don't have Q1 showing up with invalid datat?

 

The measure i'm using and the Chart

 

Margin % =
1-(DIVIDE(
    SUM('TABLE'[ExtendedCost]),
    SUM('TABLE'[ExtendedSell])
))

 

Untitled.png

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@bowz1977,

 

Try rewriting the measure like this:

 

Margin % =
DIVIDE (
    SUM ( 'TABLE'[ExtendedSell] ) - SUM ( 'TABLE'[ExtendedCost] ),
    SUM ( 'TABLE'[ExtendedSell] )
)

 

Hardcoding "1" in the measure prevents the suppression of blank if the DIVIDE expression returns blank.

 

A more performant version of this measure uses a variable:

 

Margin % =
VAR vExtendedSell =
    SUM ( 'TABLE'[ExtendedSell] )
VAR vResult =
    DIVIDE ( vExtendedSell - SUM ( 'TABLE'[ExtendedCost] ), vExtendedSell )
RETURN
    vResult

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
DataInsights
Super User
Super User

@bowz1977,

 

Try rewriting the measure like this:

 

Margin % =
DIVIDE (
    SUM ( 'TABLE'[ExtendedSell] ) - SUM ( 'TABLE'[ExtendedCost] ),
    SUM ( 'TABLE'[ExtendedSell] )
)

 

Hardcoding "1" in the measure prevents the suppression of blank if the DIVIDE expression returns blank.

 

A more performant version of this measure uses a variable:

 

Margin % =
VAR vExtendedSell =
    SUM ( 'TABLE'[ExtendedSell] )
VAR vResult =
    DIVIDE ( vExtendedSell - SUM ( 'TABLE'[ExtendedCost] ), vExtendedSell )
RETURN
    vResult

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thanks for the quick help! Worked!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors