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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
FR14
Helper I
Helper I

MTD formula with 0 value of orders

Hi Everyone 🙂

 

For MTD i use following formula, but the problem is that when the value of orders are 0 in a month (for example March) it shows values of previous month instead of showing blank or 0. Could anyone help modify this Dax to show 0 or blank when there is no order in a month?

 

Order_Subtotal_CY_MTD = CALCULATE(SUM(OrderLine[Booking USD]),DATESMTD(OrderLine[Open_Date]))
 
 
Thank you so much in advance!
2 ACCEPTED SOLUTIONS
v-jiewu-msft
Community Support
Community Support

Hi @FR14 ,

Based on my testing, please try the following methods:

1.Create the simple table.

vjiewumsft_0-1712193312435.png

2.Create the new measure to calculate.

 

Order_MTD = IF(
    ISBLANK(
        CALCULATE(
            SUM(OrderLine[Booking USD]),
            DATESMTD(OrderLine[Date])
        )
    ), 
    0, 
    CALCULATE(
        SUM(OrderLine[Booking USD]),
        DATESMTD(OrderLine[Date])
    )
)

 

3.Drag the measure into the table visual. The result is shown below.

vjiewumsft_2-1712193382795.png

 

Best Regards,

Wisdom Wu

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

View solution in original post

vivek31
Frequent Visitor

hi @FR14 ,

 

try this ,

vivek31_1-1712250848938.png

 

MTD BLANK = CALCULATE(SUM(OrderLine[Booking USD]),DATESMTD(OrderLine[Date])) + 0

 

View solution in original post

2 REPLIES 2
vivek31
Frequent Visitor

hi @FR14 ,

 

try this ,

vivek31_1-1712250848938.png

 

MTD BLANK = CALCULATE(SUM(OrderLine[Booking USD]),DATESMTD(OrderLine[Date])) + 0

 

v-jiewu-msft
Community Support
Community Support

Hi @FR14 ,

Based on my testing, please try the following methods:

1.Create the simple table.

vjiewumsft_0-1712193312435.png

2.Create the new measure to calculate.

 

Order_MTD = IF(
    ISBLANK(
        CALCULATE(
            SUM(OrderLine[Booking USD]),
            DATESMTD(OrderLine[Date])
        )
    ), 
    0, 
    CALCULATE(
        SUM(OrderLine[Booking USD]),
        DATESMTD(OrderLine[Date])
    )
)

 

3.Drag the measure into the table visual. The result is shown below.

vjiewumsft_2-1712193382795.png

 

Best Regards,

Wisdom Wu

If this post helps, then please consider Accept it as the solution to help the other members 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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.