You are on page 1of 2

Excel Function Dictionary 1998 - 2000 Peter Noneley A 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 B C D E F G H

MINUTE Page 1 of 2 I

MINUTE
Number 10/9/2013 5:35 9:15:00 PM 0.02 0.52 1.52 Minute 35 15 28 28 28 =MINUTE(D4) =MINUTE(D5) =MINUTE(D6) =MINUTE(D7) =MINUTE(D8)

What Does It Do? The function will show the minute of the hour based upon a time or a number. Only the fraction part of the number is used as it is this which relates to time of day. Syntax =MINUTE(Number) Formatting The result will be shown as a normal number between 0 and 59. Example The =REPT() function has been used to make a digital display for the current time. The time functions of =HOUR(), =MINUTE() and =SECOND() have been used in conjunction with the =NOW() as the basis for the number of repeats. To update the clock press the function key F9. Clock Hour ||||| 05 Minute ||||||||||||||||||||||||||||||||||| 35 Second ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| 59 =REPT("|",HOUR(NOW()))&" "&TEXT(HOUR(NOW()),"00") =REPT("|",MINUTE(NOW()))&" "&TEXT(MINUTE(NOW()),"00") =REPT("|",SECOND(NOW()))&" "&TEXT(SECOND(NOW()),"00")

Related Information To convert a time in hh:mm format to decimal format. Enter a time in hh:mm format : The same time converted to a decimal : To extract the hours as a decimal : To extract the minutes as a decimal : 2:45 2.75 2 0.75 =F38*24 =INT(F38*24) =MOD(F38*24,1)

To convert a time in decimal format to hh:mm format. Enter a time in decimal format : The same time converted to hh:mm format is : 3.75 3:45 =F49/24

Excel Function Dictionary 1998 - 2000 Peter Noneley A 52 53 54 55 56 57 58 B C D E F 3:00 0:45 G =INT(F49)/24 =MOD(F49,1)/24 H

MINUTE Page 2 of 2 I

To extract the hours in hh:mm format : To extract the minutes in hh:mm format :

The three formula above have also been formatted as hh:mm using the Format, Cells, Number, Time command.

You might also like