Pelatihan
Modul
Benötigen Sie in Ihrer App komplexe Formeln? Dieses Modul kann Ihnen dabei helfen, diese Formeln zu schreiben.
Browser ini sudah tidak didukung.
Mutakhirkan ke Microsoft Edge untuk memanfaatkan fitur, pembaruan keamanan, dan dukungan teknis terkini.
A formula that contains the SUMIF, SUMIFS, COUNTIF, COUNTIFS, or COUNTBLANK functions may return the "#VALUE!" error in Microsoft Excel.
Catatan
This behavior also applies to the Dfunctions, such as DAVERAGE, DCOUNT, DCOUNTA, DGET, DMAX, DMIN, DPRODUCT, DSTDEV, DSTDEVP, DSUM, DVAR, and DVARP. OFFSET and INDIRECT functions also have this behavior.
This behavior occurs when the formula that contains the function refers to cells in a closed workbook and the cells are calculated.
Catatan
If you open the referenced workbook, the formula works correctly.
To work around this behavior, use a combination of the SUM and IF functions together in an array formula.
Catatan
You must enter each formula as an array formula. To enter an array formula in Microsoft Excel for Windows, press CTRL+SHIFT+ENTER.
Instead of using a formula that is similar to the following:
=SUMIF([Source]Sheet1!$A$1:$A$8,"a",[Source]Sheet1!$B$1:$B$8)
Use the following formula:
=SUM(IF([Source]Sheet1!$A$1:$A$8="a",[Source]Sheet1!$B$1:$B$8,0))
Instead of using a formula that is similar to the following:
=COUNTIF([Source]Sheet1!$A$1:$A$8,"a")
use the following formula:
=SUM(IF([Source]Sheet1!$A$1:$A$8="a",1,0))
Instead of using a formula that is similar to the following:
=COUNTBLANK([Source]Sheet1!$A$1:$A$8)
use the following formula:
=SUM(IF([Source]Sheet1!$A$1:$A$8="",1,0))
When to use a SUM(IF()) array formula, use a logical AND or OR to replace the SUMIFS or COUNTIFS function.
This behavior is by design.
The SUMIF function uses the following syntax:
=SUMIF(range, criteria, sum_range).
See How to correct a #VALUE! error for more information.
For more information about a wizard that can help you create these functions, click Microsoft Excel Help on the Help menu, type summarize values that meet conditions by using the conditional sum wizard in the Office Assistant or the Answer Wizard, and then click Search to view the topic.
For more information about array formulas, click Microsoft Excel Help on the Help menu, type about using formulas to calculate values on other worksheets and workbooks in the Office Assistant or the Answer Wizard, and then click Search to view the topic.
Pelatihan
Modul
Benötigen Sie in Ihrer App komplexe Formeln? Dieses Modul kann Ihnen dabei helfen, diese Formeln zu schreiben.