English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

What I want to do is have the cell(s) display ex. "1:30", meaning 1 minute and thirty seconds. I don't want it to display "0:01:30" for the same.
Also I will need to average the cells in a seperate cell, I am hoping I can use the AVG function, but with the format being in Minutes and Seconds screw it up?
Microsofts helpsite is virutually vacant of coherant info on this and no such available format is on Office2007.

2007-12-20 02:40:09 · 5 answers · asked by Anonymous in Computers & Internet Software

tried the mm:ss, didn't work, date and time format just put "Jan-10 2009"

2007-12-20 04:27:59 · update #1

5 answers

To add up minutes and seconds, you must include a leading "0:" in your data.
For example,
cell A1 enter 0:01:03 to indicate 1 minute, 3 seconds
cell A2 enter 0:02:04 to indicate 2 minutes, 4 seconds
cell A3 enter 0:05:05 to indicate 5 minutes, 5 seconds

When you sum these times, Excel will display the sum in "time-of-day" format, meaning that adding cell A1+A2+A3 will yield 1:11:10.
To prevent Excel form "rolling over" at the hour, you must enclose the minutes parameter of the format in brackets, format the cell as [m]:ss which will cause it to display 71:10 rather than 1:11:10

For above sample data, the Average will have result 23 minutes, 43 seconds
[m]:ss 23:43
[h]:mm 0:23
[h]:mm:ss 0:23:43

{=AVERAGE(IF(A1:A3<>0,A1:A3))}

This formula using an array formula, press Ctrl+Shift+Enter, rather than just Enter. Excel will automatically add the braces, and also each time we edit the formula later.

Best of luck.

2007-12-20 14:21:04 · answer #1 · answered by MYs 5 · 3 0

MM:SS that should do the trick. You will need to this in as a custom format. I think the AVG function will work just fine.

2007-12-20 02:48:32 · answer #2 · answered by Anonymous · 0 0

Right click the cell with the time entry then select Format Cells. With the number tab selected, choose Time under the Category list and then your desired format under Type:.


For the average time cell enter =Average(first cell:last cell)
i.e., with times enterd in A1-A4 type, in cell A5,
=Average(A1:A4)

2007-12-20 02:57:56 · answer #3 · answered by McTeacher 3 · 0 0

Use a custom format m:ss

Average function will work to give you the average time.

2007-12-20 11:23:52 · answer #4 · answered by HazMat 4 · 1 0

try this: precise justify the column: this is going to print out merely non-0 values functionality hms(N As long)    If N = 0 Then       hms = ""    Else       hms = hms(N 60) & ":" & precise("0" & (N Mod 60), 2)    end If end functionality functionality HT(N As long)    strS = hms(N)    HT = precise(strS, Len(strS) - a million) end functionality in the objective cellular, form =HT(A1) if A1 contains your first time extensive style

2016-10-02 04:03:04 · answer #5 · answered by arruda 4 · 0 0

Simple

select your cells,

Select format and cells..


Select time and then your type... It's in the list..

2007-12-20 02:49:57 · answer #6 · answered by Ti_Cool_Tech 4 · 0 1

fedest.com, questions and answers