Formula to tell me how long something will take in minutes and hours

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,194
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,

I just want a formula to tell me how long something is going to take based on the number of items.

So in Cell K3 I have a number say 17

The formula needs to workout how many hours and minutes it will take to do all 17 items if each item takes 20 seconds

so basicly in English the formula would say Cell K3 = 17 , 17 * 20seconds = 340 seconds which is 5 minutes 40 seconds

Its ok to show it as 00:05:40 if that easier
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
If you do not want to have 0 minutes then the second formula will only display the minutes if it is not zero.


Excel 2010
KLM
317items2
4
5
65 Minutes 40 Seconds40 Seconds
Sheet1
Cell Formulas
RangeFormula
K6=INT((K3*20)/60)& " Minutes "&MOD((K3*20),60)&" Seconds"
M6=IF(INT((M3*20)/60)=0,"",INT((M3*20)/60)& " Minutes ")&MOD((M3*20),60)&" Seconds"
 
Upvote 0
Wow thank you everyone, overwhelmed with answers, this is great thank you all for your help.

Tony
 
Upvote 0

Forum statistics

Threads
1,214,377
Messages
6,119,182
Members
448,872
Latest member
lcaw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top