Forum Discussion
Divide Measure by a Column
Hi
I'm trying to divide a measure by a column (there's an active relationship between the tables) but it's not giving me the expected answer.
The measure works out the number of working days someone has had in a month, and the formula is:
I was missing something! My realationship was wrong. As soon as it set it to both ways, rather than single, everything worked as it should.
3 Replies
- smatherHelper III
Hi parry2k
Currently it's in a graph, so it can be filtered by month and also to give a YTD view too. Here's how things look -- I dunno how to share, so hopefully screen grabs will be sufficient.
The Ut col is a forumula - Ut = IF(AND(Timesheets[Workday] = "Yes", Timesheets[Utilization] = "Install & Service"), "1","")
Both workday and utilization are forumulas too:
Workday = IF(Timesheets[jobcode_1] = "Bank Holiday", "No",IF(
Timesheets[local_day] = "Sat", "No", IF(
Timesheets[local_day] = "Sun", "No", "Yes")))Utilization = IF(Timesheets[jobcode_1] = "1. Involve Tasks", "Non-Install",IF(Timesheets[jobcode_1] = "2. Service Calls", "Install & Service", IF(Timesheets[jobcode_1] = "Annual Leave", "Non-Install", IF(Timesheets[jobcode_1] = "Bank Holiday", "Non-Install", IF(Timesheets[jobcode_1] = "Sick", "Non-Install", IF(Timesheets[jobcode_1] = "Compassionate Leave", "Non-Install", IF(Timesheets[jobcode_1] = "Unpaid Leave", "Non-Install","Install & Service")))))))The number of work days per month is just a table:
The relationship is done on month.
Hopefully some of that helps!
- smatherHelper III
I was missing something! My realationship was wrong. As soon as it set it to both ways, rather than single, everything worked as it should.