The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. 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.
User | Count |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |