Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi all
how to implement this dax
if
(A.Orderdate < @CalendarDate AND (A.purchasedate > @CalendarDate OR A.purchaseDate IS NULL))
OR (A.Orderdate > @CalendarDate) then count(id) else 0
vs
Solved! Go to Solution.
@refint_650 please share a table content to explain yourself well.
By the way you may use below schema for that kind of functions.
and = &&
OR =||
Column1= IF( ( (A.orderdate < @calendardate &&
(a.purchasedate>@calendardate ||
a.purchasedate <> BLANK()
)
)
|| a.orderdate>@calenderdate
),
count(id), 0
)
@refint_650 please share a table content to explain yourself well.
By the way you may use below schema for that kind of functions.
and = &&
OR =||
Column1= IF( ( (A.orderdate < @calendardate &&
(a.purchasedate>@calendardate ||
a.purchasedate <> BLANK()
)
)
|| a.orderdate>@calenderdate
),
count(id), 0
)
User | Count |
---|---|
117 | |
73 | |
58 | |
49 | |
48 |
User | Count |
---|---|
171 | |
122 | |
60 | |
59 | |
56 |