XL: SUMIF() Function Fails If Sum_Range Contains Links to TextLast reviewed: February 2, 1998Article ID: Q129423 |
The information in this article applies to:
SYMPTOMSIf you use the SUMIF function and if the range you include for the sum_range argument contains links to text or formulas that evaluate to text, the function may return an incorrect result.
RESOLUTIONTo work around this problem, use a combination of the SUM and IF functions nested together in an array formula. For example, instead of using the following
=SUMIF(B2:B6;2;A2:A6)use the following:
=SUM(IF(B2:B6=2,A2:A6,0))NOTE: The above formula must be entered as an array formula. To enter a formula as an array formula in Microsoft Excel for Windows, press CTRL+SHIFT+ENTER. In Microsoft Excel for the Macintosh, press COMMAND+RETURN.
STATUSMicrosoft has confirmed this to be a problem in the products listed at the beginning of this article.
MORE INFORMATIONExamples of the "{=SUM(IF())}" type of formula construction can be found in the Microsoft Excel 5.0 Samples file in your Excel directory in cells C14:E16 on the Worksheet Functions tab. In the Windows environment, the file is named Samples.xls. On the Macintosh, it is named Microsoft Excel 5.0 Samples. The SUMIF function uses the following syntax: =SUMIF(range, criteria, sum_range). Any cell in the sum_range that contains a link to text causes this problem when a cell containing the value in the "criteria" argument is found in the same row as a cell in the sum_range that contains the link to text. Under this condition, SUMIF returns the "criteria" value instead of the corresponding value from the sum_range. For more information about array formulas, see "Microsoft Excel User's Guide," Chapter 10, "Working with Arrays"
|
Additional query words: 5.00 5.00a 5.00c 7.00 8.00 97 98 XL98 XL97 XL7 XL5
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |