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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi,
I have the below dax for attendance figure.
Hi @batespm ,
try like:
measure =
CALCULATE(
[CBL Attendance %],
date[date] >= TODAY()-21
)
or
measure =
VAR _currendate = MAX(date[date])
RETURN
CALCULATE(
[CBL Attendance %],
date[date] >= _currendate -21
)
If you have a week number column in the table, you may try below
attendance% =
var positivemarks= sumx(topn(3, table, week number),positive marks)
var totalmarks= sumx(topn(3, table, week number),total marks)
return
positivemarks/totalmarks
you may use same concept if you have date cloumn to get last 21 days value.
User | Count |
---|---|
9 | |
8 | |
5 | |
4 | |
3 |