Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi All,
Refer below screen shot : I want to divide hours/Amount : 156 with billable hours(measure) 160.50 and expecting client utilization has .971 and similarly 4/160.50 and expecting .028, but right now it is dividing row by row giving 1. Please help me dividing billable hours total (160.5) by individual hours.
Solved! Go to Solution.
Can you test your variable, to see what it returns.
In the formula after RETURN replace the divide function and all its argument, by the name of the variable you want to test.
Check if CurrentEmployeeH and TotalHours are giving expected result.
RETURN
CurrentEmployeeH
then same with Totalhours. Let us know
Hi,
To get your usage percentage, you can do :
% by Employee =
VAR CurrEmployee = [Employee]
VAR CurrentEmployeeH = CALCULATE( SUM([Hours Amount]) , [Employee] = CurrEmployee , ALL ( [Clients] ) )
VAR TotalHours = CALCULATE( SUM([Hours Amount]) , ALL ( ) )
RETURN
DIVIDE ( CurrentEmployeeH , TotalHours )
Hope it helps
Thanks. I am unable to refer the Employee column in the sheet name utilization. Please refer below screenshot.
Make the change just on the 1st VAR, not on the line 3
I am getting zero.
Can you test your variable, to see what it returns.
In the formula after RETURN replace the divide function and all its argument, by the name of the variable you want to test.
Check if CurrentEmployeeH and TotalHours are giving expected result.
RETURN
CurrentEmployeeH
then same with Totalhours. Let us know
I am getting below error now.
Hi,
Sorry, try SELECTEDVALUE([Employee]) instead of [Employee] for the VAR CurrEmployee, ie :
VAR CurrEmployee=SELECTEDVALUE([Employee])
Let us know
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
104 | |
99 | |
97 | |
41 | |
38 |
User | Count |
---|---|
151 | |
123 | |
79 | |
73 | |
71 |