Oct 09 2023 01:33 AM
Hi, I am doing a service swap with a client. So I owe him £250 but I charge £35 per hour for my work. How many hours do I owe him?
When I work it out in excel it 250/35 = 7.142857143 but what formula would I need to turn 7.14... into hours? For example, I know 7.25 would be 7 hours and 15 minutes but what would the .14 be?
Oct 09 2023 02:33 AM
SolutionTo convert the decimal portion (the .14 in your case) into hours and minutes, you can use the following Excel formula:
Assuming that your decimal value is in cell A1, you can use the following formula to convert it into hours and minutes:
=INT(A1) & " hours and " & TEXT((A1-INT(A1))*60,"0") & " minutes"
Here's how it works:
So, if you enter 7.142857143 in cell A1, the formula will return "7 hours and 8 minutes," which is the equivalent of 7.14 hours.
The proposed steps/solutions are untested. The text and steps were edited with the help of AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and Like it!
This will help all forum participants.
Oct 09 2023 02:39 AM
Oct 09 2023 02:42 AM
Oct 09 2023 02:58 AM
To convert a time duration in the format "X hours Y minutes" into a decimal number of hours in Excel, you can use the following formula. Assuming your time duration is in cell A1:
=HOUR(A1) + MINUTE(A1) / 60
Here is how it works:
So, if you have "6 hours 9 minutes" in cell A1, the formula will return 6.15 as the decimal equivalent.