Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() using this formula =(AVERAGE(IF(ISNUMBER(G20),G20)+(IF(ISNUMBER(M20), M20)))) My G20=62.5 and my M20=30...... My formula gives me 92.5, but i want the average not the total.. why won't average work here? Keep in my sometimes when G20=NUMBER, M20=#DIV/0!, so that is why i have "isnumber" in there.. Help.. -- fivermsg ------------------------------------------------------------------------ fivermsg's Profile: http://www.excelforum.com/member.php...o&userid=32348 View this thread: http://www.excelforum.com/showthread...hreadid=521141 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The way you have this set up, your AVERAGE function is only averaging one
number, the result of G20+M20. Try this: =AVERAGE(IF(ISNUMBER(G20),G20),IF(ISNUMBER(M20),M2 0)) HTH, Elkar "fivermsg" wrote: using this formula =(AVERAGE(IF(ISNUMBER(G20),G20)+(IF(ISNUMBER(M20), M20)))) My G20=62.5 and my M20=30...... My formula gives me 92.5, but i want the average not the total.. why won't average work here? Keep in my sometimes when G20=NUMBER, M20=#DIV/0!, so that is why i have "isnumber" in there.. Help.. -- fivermsg ------------------------------------------------------------------------ fivermsg's Profile: http://www.excelforum.com/member.php...o&userid=32348 View this thread: http://www.excelforum.com/showthread...hreadid=521141 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=AVERAGE(IF(ISNUMBER(G20),G20),IF(ISNUMBER(M20),M2 0))
Since you are summing the two arguments, you are asking AVERAGE to compute the average of a single number.By supplying the two arguments you are now not interfering with the calculations of AVERAGE. HTH Kostis Vezerides |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The problem is the plus sign- AVERAGE requires that the arguments are
separated by a comma. Try this: =(AVERAGE(IF(ISNUMBER(G20),G20),(IF(ISNUMBER(M20), M20)))) ....and you'll get the desired results. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Suggestions Suggeston, & Conditional Formatting | Excel Discussion (Misc queries) | |||
Trying to match a text string to a data table, any suggestions? | Excel Worksheet Functions | |||
Suggestions on possible chart | Charts and Charting in Excel | |||
I can't navigate my sheet with my arrow keys. suggestions? | Excel Discussion (Misc queries) | |||
Looking for Someone to review and make suggestions | Excel Discussion (Misc queries) |