R
ras711
Have set up a range named DataOpen. Within the range are numbers & 0. Do not
want to average the cells that contain 0's
Thank You!
want to average the cells that contain 0's
Thank You!
ras711 said:Hi Alan,
It's ras again! Discovered my problem. When I was using the range name
OpenData within the regular average function I had to place quotes around
OpenData otherwise I got a #VALUE error. Apparently by entering it as an
array formula as recommended by you the range name does not require the
quotes. It now works...Thanks Again!
ras711 said:Sorry Sandy I forgot to be the array brackets
{=AVERAGE(IF(OpenData<>0,OpenData,""))}
Array does yield the answer I was looking for.
It's ras again! Discovered my problem. When I was using the range name
OpenData within the regular average function I had to place quotes around
OpenData otherwise I got a #VALUE error.
ruralkansas said:It's the ctrl+shift+enter that's the secret!
What, exactly, does that do ??
:
enter this as an array formula
(use ctrl+shift+enter instead of just enter)
=AVERAGE(IF(A1:A9<>0,A1:A9,""))