Forum Discussion
trinakell
Oct 19, 2021Copper Contributor
How to convert hh:mm:ss to 6 hour working day and minutes in excel?
Hi there, I work part time and keep a record of any extra hours I do over above my 30 hours a week. I record these in an hh:mm:ss format and have an accumlulated total in the same format. What I now...
- Oct 19, 2021
trinakell Not sure what you are trying to achieve. Let's say you have accumulated 21 hours extra time. That would represent 3.5 6-hour working days. And you want this to be displayed as 3 days and 180 minutes?
If so, that could be:
=INT(A1/6)&" days "&TEXT(MOD(A1/6,1)*6/24,"[m]")&" minutes"
where the accumulated extra hours are in A1.
Riny_van_Eekelen
Oct 19, 2021Platinum Contributor
trinakell Not sure what you are trying to achieve. Let's say you have accumulated 21 hours extra time. That would represent 3.5 6-hour working days. And you want this to be displayed as 3 days and 180 minutes?
If so, that could be:
=INT(A1/6)&" days "&TEXT(MOD(A1/6,1)*6/24,"[m]")&" minutes"
where the accumulated extra hours are in A1.
Pgm_Mgr
Oct 04, 2023Copper Contributor
Riny_van_Eekelen I need to convert estimated project hours into 6 hour working days. This did the trick. Thanks for the post!