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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
SR11
Frequent Visitor

Optimize measure

Hi,

I have a lot of measures on my report to calculate totals by the max date. Here is one of my measure-

 

 

mUnitsTotal = 
VAR MaxTable = 
ADDCOLUMNS(
        SUMMARIZE('Sales','Sales'[Job],'Sales'[SubJob],"vDate",MAX('Sales'[EntryDates])),
        "BudgetedUnits",
        MAXX(
          FILTER(ALL('Sales'),[Job]=EARLIER([Job]) && 'Sales'[SubJob]=EARLIER('Sales'[SubJob]) && [EntryDates]=[vDate]),
          [Unit Total])
           )
RETURN
SUMX(MaxTable,[BudgetedUnits])

 

 

Is this an optimized measure? If not, please suggest alternatives.

At the moment the dataset has a few thousand rows with entries for each day by Job and SubJob. Eventually the dataset would grow exponentially as we add more jobs.

The reports will be filtered by job by the end users and measures should respond fairly quickly. Please advise.

1 ACCEPTED SOLUTION
v-cazheng-msft
Community Support
Community Support

Hi @SR11 

The performance of EARLIER might be slow, depending on the syntax of the expression, it may perform multiple operations. For example if you have 10 rows in the column, approximately a 100 operations could be required. Therefore, It should be avoided as much as possible. You can try this Measure as its replace.

 

mUnitsTotal =

VAR max_date =

    ADDCOLUMNS (

        Sales,

        "max_date",

            CALCULATE (

                MAX ( Sales[EntryDates] ),

                ALLEXCEPT ( Sales, Sales[Job], Sales[SubJob] )

            )

    )

VAR mTotal =

    SUMX ( FILTER ( max_date, [max_date] = [EntryDates] ), [Unit Total] )

RETURN

    IF ( HASONEFILTER ( Sales[EntryDates] ), MAX ( Sales[Unit Total] ), mTotal )

 

The result looks like this:

v-cazheng-msft_0-1620637925869.png

 

For more details, you can refer the attached pbix file.

 

Best Regards

Caiyun Zheng

 

If this post helps, please consider make it as the solution by Accept it as Solution. Really appreciate!

View solution in original post

3 REPLIES 3
SR11
Frequent Visitor

Thanks for the feedback. I will work on updating the measure. Thanks again!

Anonymous
Not applicable

Hi @SR11 

 

SUMMARIZE has performance issue, you can read some articles like this one: All the secrets of SUMMARIZE - SQLBI

 

Normally you can use GROUPBY and ADDCOLUMNS to achieve the same thing, sometimes GENERATE ROW as well.

 

I am not sure if you might have more than 1 entry for the same vDate, but I guess yes, according to your measure, so I modified the one from @v-cazheng-msft a little bit as below. You can check the performance in DAX Studio.

 

mUnitsTotal =
VAR T1 =
    ADDCOLUMNS (
        Sales,
        "vdate",
            CALCULATE (
                MAX ( Sales[EntryDates] ),
                ALLEXCEPT ( Sales, Sales[Job], Sales[SubJob] )
            )
    )
VAR T2 =
    GROUPBY (
        FILTER ( T1, [EntryDates] = [vdate] ),
        Sales[Job],
        Sales[SubJob],
        "BudgetedUnits", MAXX ( CURRENTGROUP (), [Unit Total] )
    )
RETURN
    SUMX ( T2, [BudgetedUnits] )

 

v-cazheng-msft
Community Support
Community Support

Hi @SR11 

The performance of EARLIER might be slow, depending on the syntax of the expression, it may perform multiple operations. For example if you have 10 rows in the column, approximately a 100 operations could be required. Therefore, It should be avoided as much as possible. You can try this Measure as its replace.

 

mUnitsTotal =

VAR max_date =

    ADDCOLUMNS (

        Sales,

        "max_date",

            CALCULATE (

                MAX ( Sales[EntryDates] ),

                ALLEXCEPT ( Sales, Sales[Job], Sales[SubJob] )

            )

    )

VAR mTotal =

    SUMX ( FILTER ( max_date, [max_date] = [EntryDates] ), [Unit Total] )

RETURN

    IF ( HASONEFILTER ( Sales[EntryDates] ), MAX ( Sales[Unit Total] ), mTotal )

 

The result looks like this:

v-cazheng-msft_0-1620637925869.png

 

For more details, you can refer the attached pbix file.

 

Best Regards

Caiyun Zheng

 

If this post helps, please consider make it as the solution by Accept it as Solution. Really appreciate!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.