C
Chris McComas
I am trying to calculate cost based on 8 hrs a day regardless of actual hours
worked per day. This is to gauge the real costs to the business from salary
resources who may work more than 8 hrs a day but only cost 8 hrs a day.
I have come up with this formula to calculate this in a custom field
IIf([Actual Cost]>0,(([Actual Cost]/([Actual Work]/60))*([Actual
Duration]/60)),0)
The problem is if the task gets split the calculation does not know to
account for this. I have looked for a function that will tell me the value of
the Split but cannot seem to find one. Here is what I am thinking would work.
IIf([Actual Cost]>0,(([Actual Cost]/([Actual Work]/60))*(([Actual Duration]
– SPLIT)/60)),0)
If anyone has a completely different way to do this please let me know
worked per day. This is to gauge the real costs to the business from salary
resources who may work more than 8 hrs a day but only cost 8 hrs a day.
I have come up with this formula to calculate this in a custom field
IIf([Actual Cost]>0,(([Actual Cost]/([Actual Work]/60))*([Actual
Duration]/60)),0)
The problem is if the task gets split the calculation does not know to
account for this. I have looked for a function that will tell me the value of
the Split but cannot seem to find one. Here is what I am thinking would work.
IIf([Actual Cost]>0,(([Actual Cost]/([Actual Work]/60))*(([Actual Duration]
– SPLIT)/60)),0)
If anyone has a completely different way to do this please let me know