Convert hours to days
Solved
Alan357
Posted messages
89
Status
Member
-
PHILOU10120 Posted messages 6463 Registration date Status Contributor Last intervention -
PHILOU10120 Posted messages 6463 Registration date Status Contributor Last intervention -
Hello,
I created an overtime management tool, and in my summary table, I would like my total hours (which is in hour format 00:00:00) to be converted into days in another cell. Knowing that 1 day = 7 hours.
Thank you in advance
Best regards,
I created an overtime management tool, and in my summary table, I would like my total hours (which is in hour format 00:00:00) to be converted into days in another cell. Knowing that 1 day = 7 hours.
Thank you in advance
Best regards,
2 answers
-
Hello
the total hours in A1
=INT(A1/(1/24*7))
--
It is by forging that one becomes a blacksmith. - It is at the foot of the wall that one sees the mason - one always learns from one's mistakes. -
Hello
try this
=INT(A1/(1/24*7))" J "&TEXT(A1-INT(A1/(1/24*7))*(1/24*7);"HH:MM")
--
It is by forging that one becomes a blacksmith. - It is at the foot of the wall that one sees the mason - one always learns from their mistakes.