Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
Having an issue in solving this simple problem. so I have a table lets say employeehours having following data:
The requirement is to have hours worked by employees and a calculation which tell whether an employee is in fatigue or close to or in No fatigue , some thing like this, the below chart sums up by week and week is present in a slicer :
so if an employee during a week work for less than 50 h, its no fatigue, <=70 close to fatigue and greater than 70 is high fatigue, date column is not present in it , but when I am creating "Is Fatigue" calculation i think it is taking date into consideration , i only need to have that calcultion apply on what the current data is shown in table. Simple switch statement to calculate "is fatigue" column is below:
but it is not calculating correctly, the weekly filter is applied here:
Solved! Go to Solution.
Hi @Anonymous,
Please convert your date fields to the real date value first, then you can try to use the following calculated column formula to get tags based on summary work hour per week for each employee:
Tag =
VAR workhour =
CALCULATE (
SUM ( Employee[Hours worked] ),
FILTER ( Employee, [Employee] = EARLIER ( Employee[Employee] ) )
&& YEAR ( [Date] ) = YEAR ( EARLIER ( Employee[Date] ) )
&& WEEKNUM ( [Date], 2 ) = WEEKNUM ( EARLIER ( Employee[Date] ), 2 )
)
RETURN
IF (
workhour <= 50,
"No Fatigue",
IF ( workhour > 50 && workhour <= 60, "Close to fatigue", "High fatigue" )
)
Regards,
Xiaoxin Sheng
Hi,
You already have a Date column. Ensure that you also have a Calendar Table with a week number column in there. Share the link from where i can download your PBI file.
Hi Asish,
Thank you for getting back, PFA, have a look at calculation "IsFatigue" and you can see it is not calculating correctly in table. looks like some row context issues.
I could not attach a file here, so a google drive link for PBIX:
https://drive.google.com/file/d/1xij7GQaFglIN1rMulxERYFYbmFUYXiI4/view?usp=sharing
Hi @Anonymous,
Please convert your date fields to the real date value first, then you can try to use the following calculated column formula to get tags based on summary work hour per week for each employee:
Tag =
VAR workhour =
CALCULATE (
SUM ( Employee[Hours worked] ),
FILTER ( Employee, [Employee] = EARLIER ( Employee[Employee] ) )
&& YEAR ( [Date] ) = YEAR ( EARLIER ( Employee[Date] ) )
&& WEEKNUM ( [Date], 2 ) = WEEKNUM ( EARLIER ( Employee[Date] ), 2 )
)
RETURN
IF (
workhour <= 50,
"No Fatigue",
IF ( workhour > 50 && workhour <= 60, "Close to fatigue", "High fatigue" )
)
Regards,
Xiaoxin Sheng
Hi,
All figures in that column are <50, so your formula is correct in returning "No fatigue" in all cells. Where's the problem. Besides, correct for the following:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
146 | |
87 | |
66 | |
52 | |
46 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |