Forum Discussion
BrotherZin
8 years agoFrequent Visitor
Need help with creating a measure
I have two tables: Absence Detail which lists each planned absence an employee has requested by day (table includes date, employee, department among a few other columns. Department Total which i...
- 8 years ago
You may use measure below and take advantage of Visual level filters.
Measure = DIVIDE ( COUNTX ( AD, [EmployeeNumber] ), MAX ( DT[total employees] ) )
v-chuncz-msft
8 years agoCommunity Support
You may use measure below and take advantage of Visual level filters.
Measure = DIVIDE ( COUNTX ( AD, [EmployeeNumber] ), MAX ( DT[total employees] ) )
BrotherZin
8 years agoFrequent Visitor
Thank you! Now that I see it, it makes perfect sense!