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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

Formula Help - Filter by Another Column

I am trying to write the following formula with the following tables

Numerator should be the (Sum of Total Person Hours) - (Sum of Total Person Hours where Hour Type equals Non-Working)

Denominator should be the (Sum of Total Working Hours).

 

Using this example, the formula should be (40-24) / (40) = 0.4

 

How can I write this formula as a column or measure?

 

Table: Time Logged

Resource NamePerson HoursHour Type
Jill8Client
Jill8Internal
Jill24Non-Working

 

Table: Resources

Resource NameWorking Hours
Jill40
2 REPLIES 2
FreemanZ
Community Champion
Community Champion

or you can plot the Resource Name from Resource table with a measure like:

Measure = 
VAR _nonworkinghours= 
SUMX(
    FILTER(
        TimeLogged,
        TimeLogged[Resource Name] = MAX([Resource Name])
            &&TimeLogged[Hour Type] = "Non-Working"
    ),
    TimeLogged[Person Hours]
)
RETURN
DIVIDE( MAX([Working Hours]) - _nonworkinghours, MAX([Working Hours]))

 

it worked like:

FreemanZ_2-1676818947912.png

 

FreemanZ
Community Champion
Community Champion

hi @Anonymous 

try to add a column in the Resource table:

 

 

column = 
VAR _nonworkinghours= 
SUMX(
    FILTER(
        TimeLogged,
        TimeLogged[Resource Name] = [Resource Name]
            &&TimeLogged[Hour Type] = "Non-Working"
    ),
    TimeLogged[Person Hours]
)
RETURN
DIVIDE( [Working Hours] - _nonworkinghours, [Working Hours])

 

it worked like:

FreemanZ_1-1676818862313.png

 

 

 

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.