Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
Solved! Go to Solution.
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/
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/
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |