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
MG86
Advocate II
Advocate II

Calculated Column: Which syntax is better?

Hi, mostly just curious here as both work, but also wanting to optimize for performance:

 

I have a Projects table with a row for every project status mutation. So a project can be New, go into Quotation, go into Accepted, go into Production, get Invoiced etc. Basically a funnel. Now it happens that some projects have gone into Quotation multiple times, and I want to retrieve the earliest date that a project went into Quotation in a Calcultated Column.

 

Given that, which is the better syntax:


Syntax A:

 

VAR Projectnr = 'Projects'[Projectnumber]

RETURN

    MINX (

        FILTER (

            'Projects',

            'Projects'[Projectnumber] = Projectnr

                && 'Projects'[statusnr] = 14

        ),

        'Projects'[Date]

    )

 

Syntax B:

 

VAR Projectnr = 'Projects'[Projectnumber]

RETURN

    CALCULATE (

        MIN ( 'Projects'[Date] ),

        FILTER (

            'Projects',

            'Projects'[Projectnumber] = Projectnr

                && 'Projects'[statusnr] = 14

        )

    )

 

 

I wonder if there is a core difference between these two and if so what is the difference in characteristics (speed, higher chance of unexpected results)?

 

As Syntax A uses CALCULATE I wonder if that induces a less optimal context transition based calculation whereas Syntax B might not use context transition? Or do they both use context transition but is it not implicit in the syntax with Syntax B?

 

Also, is there a way to measure performance for Calculated Columns in a similar way you can use performance analyzer for report visuals?

1 REPLY 1
v-yiruan-msft
Community Support
Community Support

Hi @MG86 ,

A Calculated Column is processed at Refresh time, and the result will be stored in the memory. Therfore, you can see the physical column added to an existing table in your model when go to the "Data" tab. Base on my research, I did not find any tool to monitor the running speed and performance of the calculated column. In addition, about the MIN and MINX used in the two calculation columns you mentioned, you can refer to the following blogs to find more.

Difference Between MIN, MINA, MINX In DAX

Improve Power BI Performance by Optimizing DAX

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.