If you gave some examples of your "entries" that would help as I think that's what's preventing you from getting a quick resolution.
If you're saying you work 3 hours and 36 minutes and you enter that into say A1 as
3:36
then to get your total you could use something like
=150*SUM(HOUR(A1),(MATCH(MINUTE(A1),{0,1,6,13,19,25,31,36,41,47,53})-1)/10)
would generate 555
change the values in in the line array to match your requirements - you must leave the 0 though... in the above 1-5 would generate 0.1, 6-12 -> 0.2 etc...
It's a shame you need to specify like the above as obviously
=150*(CEILING(A1*24,0.1))
is a lot simpler but in this case would generate 540
Bookmarks