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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Row context filter in table having issues

Hi,

Having an issue in solving this simple problem. so I have a table lets say employeehours having following data:

 

talhamm_0-1645289864962.png

 

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 :

 

talhamm_1-1645290270167.png

 

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:

 

talhamm_3-1645290891625.png

but it is not calculating correctly, the weekly filter is applied here:

 

talhamm_4-1645291019876.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

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. 


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

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

Anonymous
Not applicable

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:

  1. Format the Date column in the Employee table as a Date data type (not text)
  2. Ensure that the Calendar runs from 2024 to 2030 (the duration as seen in the Employee table)
  3. Create a relationship between 2 tables based on Date (Many to One and Single)

Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.