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
Divyanshkapoor
New Member

need dax help

Scenario:

I have a report that needs me to calculate the frequency of absenteeism impact per employee. The condition is, 1 date will be count as 1, and consecutive date will also be count as 1. If the consecutive date involve 2 different week, then it will be count as 2 and not 1. If 1 date (non-consecutive) and a consecutive dates appear on the same week, the sum of frequency will be 2.

 

Divyanshkapoor_0-1692356131661.png

 

@dax 

1 REPLY 1
Mehdi_Rizvi
Advocate I
Advocate I

You can try this DAX :

Absenteeism Frequency = 

VAR PreviousDate = MIN('YourTable'[Date]) - 1

RETURN

SUMX(

    FILTER('YourTable',

        'YourTable'[Employee] = SELECTEDVALUE('YourTable'[Employee]) &&

        ('YourTable'[Date] - PreviousDate > 1 ||

        WEEKNUM('YourTable'[Date]) <> WEEKNUM(PreviousDate))

    ),

 

    1

)

Helpful resources

Announcements
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.

June 2025 community update carousel

Fabric Community Update - June 2025

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