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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
bhmiller89
Helper V
Helper V

Calculating a Target Goal

 I have data where basically I calculate how many Target Hours are in a month.  Basically, any week day * 8hrs. I already wrote a column that numbers days of the week 1-7 where 1=Monday.

 

So I have this written: Target= 8* CALCULATE(DISTINCTCOUNT(DateTable[MasterDate]), FILTER(DateTable, DateTable[DayofWeek] <6))

 

However, I feel like the data being returned is not completely accurate. 

 

1. In my Table the Target doesn't sum a total for the number of people in the column.  The other columns of data show a sum at the bottom.  The yearly target for each person is 2088.  The Total at the bottom says "2088" and not "2088* count of users"

 

2. When I calculate a Utilization% I simply divided my measures: [Total Hours Entered]/ [Target] but this doens't seem to be returning correct data.

 

Any help or suggestions are appreciated

2 REPLIES 2
v-sihou-msft
Microsoft Employee
Microsoft Employee

@bhmiller89

 

In this scenario, if there's no relationship between Employee table and Date table, your [Target] calculation will not aggregate on total row. You suppose to have a table about employee entering hours. I suggest you add a target hour column and give 8 for all rows. Then calculate the [Target] based on this "Logging Hours" table instead of Date table.

 

Regards,

konstantinos
Memorable Member
Memorable Member

@bhmiller89 It would be better to have more information about your data, table.

 

I think your calculation is wrong, since you just counting unique employers worked in working days multiply by 8

 

 

Hope this is what you meant

Target = 8 hours * No of Employees * Working Days of period

 

Target =
8
    * CALCULATE (
        COUNTROWS ( DateTable );
        DateTable[DayOfWeek<6)
     * DISTINCTCOUNT(MasterTable[EmployeeID]
    )
Konstantinos Ioannou

Helpful resources

Announcements
FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.