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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
lsolomon1
Frequent Visitor

Optimizing Performance for my Local Measure

Below you will see my bread crumb trail of measures that make up my main measure *_Monthly At Risk Units in which I am trying to help with the duration of the load time. It currently takes 11 seconds and I am trying to understand how I can improve it. 

 

The colors explained - Yellow is my main measure. Pink is the measure referenced in the yellow measure. Gray measures are the ones used in the pink, and olive green within the gray. Let me know if you have any ideas on a DAX formatting change or a different way I could do this. 

 

 

*_Monthly At Risk Units = var RiskUntis = [*_Availability by Month]

Return

IF([*_Availability by Month]<0,[*_Availability by Month])

 

*_Availability by Month = ATP[*_Rolling Total ATP] - [*_Rolling Total At Once Master]

 

*_Rolling Total ATP =

CALCULATE([*_ATP (TA)],                      

    FILTER(

        ALL(

            'Common Days TA'),

            'Common Days TA'[YearMonth] <= MAX('Common Days TA'[YearMonth])))

 

*_Rolling Total At Once Master =

SUMX (

    FILTER (

        ALLSELECTED ( 'Common Days TA'[YearMonth] ),

        'Common Days TA'[YearMonth] <= MAX ( 'Common Days TA'[YearMonth] )

    ),

    [*_At Once Master (TA)]

)

 

*_ATP (TA) =

CALCULATE(

    [*_ATP Units],

    TREATAS(VALUES('Common Days TA'[DateKey]), 'Event Date'[DateKey])

)

 

*_At Once Master (TA) = CALCULATE([*_At Once Master],

TREATAS(VALUES('Common Days TA'[DateKey]), 'Event Date'[DateKey]))

 

0 REPLIES 0

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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