Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello All,
Thank you in advance!!
Solved! Go to Solution.
Should be something like this
divide(sum(table[billed hours]),(divide(sum(table[available hours]),distinctcount(table[username]))))
Something like this ?
Billable = CALCULATE( DIVIDE(report335[Billable Hours], DIVIDE(report343[Available Hours],DISTINCTCOUNT(report335[User - Name]))))
Thank you @amitchandak for the response. Doesnt seem to do the trick since the third argument is an alternate not the new demoniator. If i am understanding that correctly.
Basically i need this in one measure but with table values like i had above.
20/(200/4)=4
Hi @zsechler ,
You should be able to divide without using a calculate. If your first measure is
Billable =
DIVIDE ( report343[Available Hours], DISTINCTCOUNT ( report335[User - Name] ) )
your second measure would look something like this:
Another Measure =
DIVIDE (
DIVIDE ( <numerator> , <denominator> ),
[Billable]
)
Thank you for the response @danextian. As i said in my question that was underlined, i need it to be in the same measure. Thoughts? Thankyou again for the help!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.