Forum Discussion
Multiply Hours and Minutes by a number
- Apr 16, 2021
TIME() function requires all 3 parameters, you can't miss seconds. Please check TIME function - Office Support (microsoft.com)
Thank you for the file. Excel doesn't recognize @10:46 in, thus an error
=IF(B7=0," ",D7*@10:46)
You may use
=IF(B7=0," ",D7*"10:46")
or more reliable
=IF(B8=0," ",D8*TIME(11,47,0))SergeiBaklanI am trying to do something similar. I want to calculate the total time to assemble
19 pcs * :45 minutes each unit
How do I get it to display correctly?
Windows 11 Pro
Version 22H2
Office 365
Version 2307 Build16626.20170
- SergeiBaklanAug 24, 2023Diamond Contributor
In Excel datetimes are actually numbers where days are integer part of the number and time is decimal one. One day is equal to 1.
Thus 1 hour = 1/24
1 minute =1/24/60
etc
45 min will be 45/24/60. Multiply on 19, totally =19*45/24/60 and apply time format. It returns 14:15:00.
- ProductionTechAug 24, 2023Copper ContributorOur times are in ":00" format or "0:00". Can I use the following formula where M13=:45 and C13=19
=(M13/24/60)*C13- SergeiBaklanAug 24, 2023Diamond Contributor
It looks like in M13 you have text which looks like a time, not the time actually (which shall be a number). Could you please check with formulae as
what do they return. If the same what are possible variants for such texts.