Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
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
)
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |