Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
I have n 1 column values (seconds) and I want to calculate average for this where comes only values that are bigger than 60 seconds - how??? Can some body help me with this? Kindly regards, Petri |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=AVERAGE(IF(A1:A10060,A1:A100,"")) entered as an array formula (Control
Shift Enter), if the numbers are numbers of seconds. If they are in Excel time format, then =AVERAGE(IF(A1:A100TIME(0,0,60),A1:A100,"")) (again as an array formula). -- David Biddulph "Petu71" wrote in message ... Hi, I have n 1 column values (seconds) and I want to calculate average for this where comes only values that are bigger than 60 seconds - how??? Can some body help me with this? Kindly regards, Petri |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Are the seconds XLtimes or numbers? if numbers use:
=AVERAGE(IF(G1:G1060,G1:G10)) Array entered with Ctrl + Shift + Enter not just Enter. If doen correctly you will get { Formual } if not you get a #VALUE! error If the times are real XL times then use: =AVERAGE(IF(H1:H10=1/60/24,H1:H10)) also array entered. Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Petu71" wrote in message ... Hi, I have n 1 column values (seconds) and I want to calculate average for this where comes only values that are bigger than 60 seconds - how??? Can some body help me with this? Kindly regards, Petri |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
sumproduct and average functions | Excel Worksheet Functions | |||
efficiency: database functions vs. math functions vs. array formula | Excel Discussion (Misc queries) | |||
Help with IF & Average Functions | Excel Worksheet Functions | |||
How do I combine two functions AVERAGE and IF in Excel ? | Excel Worksheet Functions | |||
MIN, MAX, AVERAGE functions | Excel Worksheet Functions |