Forum Discussion
anonymoususer92
4 years agoHelper I
Dividing 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
4 years agoSuper User
You could try creating a measure like
Utilization = DIVIDE( COUNTROWS( 'Badging Table'), SELECTEDVALUE( 'Occupancy Table'[Assigned Spaces]) )- anonymoususer924 years agoHelper I
Thank you so much johnt75 ! This works perfectly