The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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?
Solved! Go to Solution.
Hi @FR14 ,
Based on my testing, please try the following methods:
1.Create the simple table.
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.
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.
hi @FR14 ,
try this ,
MTD BLANK = CALCULATE(SUM(OrderLine[Booking USD]),DATESMTD(OrderLine[Date])) + 0
hi @FR14 ,
try this ,
MTD BLANK = CALCULATE(SUM(OrderLine[Booking USD]),DATESMTD(OrderLine[Date])) + 0
Hi @FR14 ,
Based on my testing, please try the following methods:
1.Create the simple table.
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.
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.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
20 | |
18 | |
18 | |
18 | |
14 |
User | Count |
---|---|
42 | |
35 | |
23 | |
20 | |
20 |