Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Is there an easy way to modify the formula below to only give a result ONLY if all five cells (C4 through C8) have values entered? =IF(ISERROR(ROUND(AVERAGE(C4:C8),1)),"",ROUND(AVER AGE(C4:C8),1)) Thank you, Chuck -- chuck72352 ------------------------------------------------------------------------ chuck72352's Profile: http://www.thecodecage.com/forumz/member.php?userid=482 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=113816 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
This should do it: =IF(COUNTBLANK(C4:C8)=0,IF(ISERROR(ROUND(AVERAGE(C 4:C8),1)),"",ROUND(AVERAGE(C4:C8),1)),"") Regards, Per "chuck72352" skrev i meddelelsen ... Is there an easy way to modify the formula below to only give a result ONLY if all five cells (C4 through C8) have values entered? =IF(ISERROR(ROUND(AVERAGE(C4:C8),1)),"",ROUND(AVER AGE(C4:C8),1)) Thank you, Chuck -- chuck72352 ------------------------------------------------------------------------ chuck72352's Profile: http://www.thecodecage.com/forumz/member.php?userid=482 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=113816 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(COUNT(C4:C8)=5,ROUND(AVERAGE(C4:C8),1),"")
Since count only detects numbers, ensures that 5 numbers are present before averaging. -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "chuck72352" wrote: Is there an easy way to modify the formula below to only give a result ONLY if all five cells (C4 through C8) have values entered? =IF(ISERROR(ROUND(AVERAGE(C4:C8),1)),"",ROUND(AVER AGE(C4:C8),1)) Thank you, Chuck -- chuck72352 ------------------------------------------------------------------------ chuck72352's Profile: http://www.thecodecage.com/forumz/member.php?userid=482 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=113816 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() For some reason I get "False" as my average whether or not I have numbers in the five cells. I'm using as you suggested: =IF(COUNTBLANK(C4:C8)=0,IF(ISERROR(ROUND(AVERAGE(C 4:C8),1)),"",ROUND(AVERAGE(C4:C8),1)),"") -- chuck72352 ------------------------------------------------------------------------ chuck72352's Profile: http://www.thecodecage.com/forumz/member.php?userid=482 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=113816 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
see your other post
-- Biff Microsoft Excel MVP "chuck72352" wrote in message ... Is there an easy way to modify the formula below to only give a result ONLY if all five cells (C4 through C8) have values entered? =IF(ISERROR(ROUND(AVERAGE(C4:C8),1)),"",ROUND(AVER AGE(C4:C8),1)) Thank you, Chuck -- chuck72352 ------------------------------------------------------------------------ chuck72352's Profile: http://www.thecodecage.com/forumz/member.php?userid=482 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=113816 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Ignoring non-filled formulas in average | Excel Discussion (Misc queries) | |||
Calculating Average based on 3 filled cells from left in a row | Excel Discussion (Misc queries) | |||
Filled cells dont appear as filled | Excel Discussion (Misc queries) | |||
Percentage of filled cells | Excel Worksheet Functions |