The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
70 | |
64 | |
62 | |
49 | |
28 |
User | Count |
---|---|
117 | |
75 | |
61 | |
54 | |
42 |