Forum Discussion
Divide Measure by a Column
- 6 years ago
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.
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")))
The number of work days per month is just a table:
The relationship is done on month.
Hopefully some of that helps!
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.