Forum Discussion
anonymoususer92
Helper I
4 years agoDividing a Measure by a Column
Hi All, Here is my situation - We are trying to calculate our building utilization by comparing how many people are returning to work and what was the original building assignment of these empl...
- 4 years ago
You could try creating a measure like
Utilization = DIVIDE( COUNTROWS( 'Badging Table'), SELECTEDVALUE( 'Occupancy Table'[Assigned Spaces]) )
johnt75
Super User
4 years agoYou could try creating a measure like
Utilization = DIVIDE( COUNTROWS( 'Badging Table'), SELECTEDVALUE( 'Occupancy Table'[Assigned Spaces]) )anonymoususer92
Helper I
4 years agoThank you so much johnt75 ! This works perfectly