» Avoiding Errors when Using the And Function to Combine Multiple Conditions in Array Formulas
CATEGORY - Excel Date & Time Formulas
VERSION - All Microsoft Excel Versions
The following Array formula was designed to calculate the average difference between each pair of values in columns A & B (providing both cells are not empty):
{=AVERAGE(IF(AND(ISNUMBER(A1:B5),ISNUMBER(A1:B5)),A1:A5-B1:B5))}
However, an incorrect result of "0" is returned.
Solution:
Use the AVERAGE, IF, and ISNUMBER functions as shown in the following Array formula:
{=AVERAGE(IF(ISNUMBER(A1:A5)*ISNUMBER(B1:B5),A1:A5-B1:B5))}
Book Store:
Recommended Books:
- Special Edition Using Microsoft Excel 2002
- The Accounting Game : Basic Accounting Fresh from the Lemonade Stand
- Special Edition Using Microsoft Word 2002
- Guide to Financial Reporting and Analysis
- Rich Dad's Guide to Investing: What the Rich Invest in, That the Poor and the Middle Class Do Not!
- Microsoft Office XP Step-By-Step (With CD-ROM)
Should have more documentation
John
I mean, why does this work? A little more explanation is needed.

