Hi
So lets try to remove some stress
First some questions:
- You have different rates for days, hours and minutes (that is 60*rate
for a minute <> rate for a hour??)
- How did you exactly calculate the completion time (is the result
hours) -> please give a real-life example
Lets assume your value is in hours (e.g. it takes 16:20 hours to
complete the work -> 1 day, 4 hours and 20 minutes) and this value is
stored in cell A1 use the following to calculate your costs
1. costs for the days:
=INT((A1*24)/12)*day_rate
2. costs for the hours
=INT(MOD(A1*24,12))*hour_rate
3. costs for the minutes
=((MOD(A1*24,12))-INT(MOD(A1*24,12)))*60*minute_rate
If you like you can combine this to a large formula to calculate your
total costs:
=INT((A1*24)/12)*day_rate+INT(MOD(A1*24,12))*hour_rate+((MOD(A1*24,12))
-INT(MOD(A1*24,12)))*60*minute_rate
Come back if you have further questions