Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
batespm
New Member

Attendance Data

Hi,

 

I have the below dax for attendance figure.

 

CBL Attendance % =
DIVIDE(
    SUM('WorkingArea TOUR_ClassBased'[Positive Marks]),
    SUM('WorkingArea TOUR_ClassBased'[Total Marks])
)
 
Is there a way to amend this so i get the last 3 weeks attendance?
 
Thanks
2 REPLIES 2
FreemanZ
Super User
Super User

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

)

Rupak_bi
Super User
Super User

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.



Regards
Rupak
FOLLOW ME : https://www.linkedin.com/in/rupaksar/

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.