Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 9 | |
| 8 | |
| 7 |