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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

Optimize Dax Code

Hi,
I want to optimize below code, can you help me which DAX Functions should i use to optimize my dax code. 
 
VAR Test = Format(COALESCE(CALCULATE(SUM(Sales[Revenue]),
filter(Sales,Sales[product_status]="A" || Sales[product_status] = "C" || Sales[product_status]="Z" || Sales[product_status]="1"|| Sales[product_status]= ""),
FILTER(Sales,Product<>BLANK()),
FILTER(Sales,Sales[Sales_Date]>=Date(2022,04,01) && Sales[Sales_Date]<=Date(2022,04,30))),0),"general number")
 
Return Test
1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

 

@Anonymous 

Please try following version. It's important to better understand the data model before performaing any DAX optimization.

VAR Test =
FORMAT (
    COALESCE (
        CALCULATE (
            SUM ( Sales[Revenue] ),
            KEEPFILTERS ( Sales[product_status] IN { "A", "C", "Z", "1", "" } ),
            KEEPFILTERS ( Sales[Product] <> BLANK () ),
            KEEPFILTERS ( Sales[Sales_Date] IN CALENDAR ( "2022-04-01", "2022-04-30" ) )
        ),
        0
    ),
    "general number"
)



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

3 REPLIES 3
Fowmy
Super User
Super User

@Anonymous 

USe DAX Studio: Analyzing Performance Analyzer trace in DAX Studio - YouTube

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Fowmy
Super User
Super User

 

@Anonymous 

Please try following version. It's important to better understand the data model before performaing any DAX optimization.

VAR Test =
FORMAT (
    COALESCE (
        CALCULATE (
            SUM ( Sales[Revenue] ),
            KEEPFILTERS ( Sales[product_status] IN { "A", "C", "Z", "1", "" } ),
            KEEPFILTERS ( Sales[Product] <> BLANK () ),
            KEEPFILTERS ( Sales[Sales_Date] IN CALENDAR ( "2022-04-01", "2022-04-30" ) )
        ),
        0
    ),
    "general number"
)



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Anonymous
Not applicable

@Fowmy  Thanks for reply, This is working good, but one more thing i want cross check, what is execution time of both DAX queries, how can we check this ? 

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.