Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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 |
---|---|
97 | |
76 | |
76 | |
48 | |
26 |