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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

DAX optimization help required

Hi team,

 Need help on Dax optimization since Matrix Visual is not loading for high volume of SalesData while dragging this measure as Values

DAX Measure --

_mSecureReportingBaseQuantity =
VAR currentUser =
    USERPRINCIPALNAME ()
VAR isManager =
    CONTAINS (
        ALL ( DimSalesManagementTerritoryRep ),
        DimSalesManagementTerritoryRep[Manager Email], currentUser
    )
VAR isSalesRep =
    CONTAINS (
        ALL ( DimSalesManagementTerritoryRep ),
        DimSalesManagementTerritoryRep[Email], currentUser
    )
VAR selectedTerritory =
    SELECTEDVALUE ( DimTerritory[Territory with Jumper] )
RETURN
    IF (
        ISBLANK ( selectedTerritory ),
        FctSalesOrder[_mReportingBaseQuantity],
        IF (
            isSalesRep
                && CONTAINS (
                    ALL ( DimSalesManagementTerritoryRep ),
                    DimSalesManagementTerritoryRep[Management Territory], selectedTerritory,
                    DimSalesManagementTerritoryRep[Email], currentUser
                ),
            FctSalesOrder[_mReportingBaseQuantity],
            IF (
                isManager
                    && CONTAINS (
                        ALL ( DimSalesManagementTerritoryRep ),
                        DimSalesManagementTerritoryRep[Management Territory], selectedTerritory,
                        DimSalesManagementTerritoryRep[Manager Email], currentUser
                    ),
                FctSalesOrder[_mReportingBaseQuantity],
                IF ( NOT ( isSalesRep || isManager ), FctSalesOrder[_mReportingBaseQuantity] )
            )
        )
    )

 

Need your help at the earliest.

Thanks in advance..

 

Regards,

Samrat

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

Hi @Anonymous ,

 

To use switch instead of If should help you. Also please refer to this blog.

 

https://www.sqlbi.com/articles/optimizing-if-and-switch-expressions-using-variables/

 

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

View solution in original post

1 REPLY 1
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

To use switch instead of If should help you. Also please refer to this blog.

 

https://www.sqlbi.com/articles/optimizing-if-and-switch-expressions-using-variables/

 

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

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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