MINUTE

MINUTE(serial_number)

Returns the minute as an integer given a date serial number.

serial_numberThe time that contains the minutes you want to find.

REMARKS
* This function returns a number between 0 and 59.
* The "serial_number" can be a time, value, cell reference or a text string in a time format.
* If "serial_number" contains any date information, it is ignored.
* If "serial_number" < 0, then #NUM! is returned.
* If "serial_number" is not a valid time or date, then #VALUE! is returned
* If you want to enter a static time that will not change or update, use the shortcut key (Ctrl + Shift + ;).
* You can use the HOUR function to return the hour as an integer given a date serial number.
* You can use the SECOND function to return the number of seconds as an integer given a date serial number.
* You can use the TIME function to return the time as a decimal given the hour, minute, second.
* You can use the TIMEVALUE function to return the time as a decimal given a time in text format.
* The equivalent VBA function is VBA.MINUTE
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 AB
1=MINUTE(B1) = 3011:30:15
2=MINUTE("11:30:15") = 30=NOW() = 15:35:41
3=MINUTE(B2) = 35=NOW() = 45005.650
4=MINUTE(0.678) = 16 
5=MINUTE(TIME(15,10,55)) = 10 
6=MINUTE("1 Jan 2022 11:30:15") = 30 
7=MINUTE(TIMEVALUE("6:45:22 PM")) = 45 
8=MINUTE(0) = 0 
9=MINUTE("6:15 AM") = 15 
10=MINUTE("12:00 PM") = 0 
11=MINUTE(-10) = #NUM! 
12=MINUTE("some text") = #VALUE! 


© 2023 Better Solutions Limited. All Rights Reserved. © 2023 Better Solutions Limited Top