Explanation

This formula relies on a technique called “nested IFs” to handle a series of options and results. With nested IFs, one IF function is nested inside another, a process that is explained in some detail here .

The formula in this example is purposely more verbose than necessary to “show” all possible options and results in a way that is easier to understand and maintain. The trick is to structure the formula with line breaks to show each IF on a separate line along with the “true result” for that IF. The “false result” is the following IF statement. Notice the final false result will “catch” any case that fails all previous tests.

Essentially, we are using line breaks to build a “table” that the human eye can easily read. In addition, we are using the AND function to run more than one logical test at a time to limit the number of IF functions. The AND function inside each IF function tests both color and value.

Note you can use Alt + Enter to enter new lines in the formula bar. You’ll need to expand the formula bar vertically to see more than one line at a time.

More conditions

This formula approach can be expanded to evaluate more options. The AND function can handle more logical tests, and you can combine the AND function with the OR function if needed. You could also replace AND and OR with boolean logic . Finally, you can also use the IFS function in later versions of Excel to reduce nesting.

Result as calculation

Although the example above shows a numeric result for each set of options, the formula can be customized to run a calculation instead by replacing hardcoded values with any standard formula expression.

Explanation

The goal is to verify the input of all required values before calculating a result. In the worksheet shown, the SUM function is used as an example only. You can use the same approach with any formula to prevent calculation until all required values are available. The logic can be adjusted in many ways to suit the situation. Below are several examples of how you can approach this problem. The best solution depends on the requirements of the project and your personal preference.

IF + COUNT

In the example shown, we are using the IF function together with the COUNT function :

=IF(COUNT(C5:C7)=3,SUM(C5:C7),"")

Translation: if the count of numbers in C5:C7 is 3, sum the range C5:C7. Otherwise, display nothing.

The logical test is based on the COUNT function, which counts numeric values:

COUNT(C5:C7)=3 // returns TRUE or FALSE

This test will return FALSE until the range C5:C7 contains three numbers. This will cause the IF function to return the value_if_false , which has been supplied as an empty string (""). In Excel, an empty string will look like an empty cell. Since C7 has no value in the original worksheet, the formula displays no result. Once the range C5:C7 contains three numbers, the test will return TRUE and IF will run the SUM function, which will return the sum of C5:C7 as a final result.

There are many ways to check for blank cells, and several other options are explained below.

IF + COUNTBLANK

The COUNTBLANK function counts empty cells in a range , so we can write a slightly more compact formula like this:

=IF(COUNTBLANK(C5:C7),"",SUM(C5:C7))

If COUNTBLANK returns any non-zero number, the IF function will evaluate the number as TRUE, and return an empty string (""). If COUNTBLANK returns zero, IF will evaluate zero as FALSE and return the result from the SUM function.

IF + ISBLANK

Another approach is to use the ISBLANK function. ISBLANK returns TRUE when a cell reference is empty. ISBLANK was originally designed to test one cell only, but you can use ISBLANK three times inside the OR function together like this:

=IF(OR(ISBLANK(C5),ISBLANK(C6),ISBLANK(C7)),"",SUM(C5:C7))

OR will return TRUE if any supplied value is TRUE. In other words, the OR function will return TRUE if any of the ISBLANK functions return TRUE. Alternatively, can use a formula like this:

=IF(OR(ISBLANK(C5:C7),"",SUM(C5:C7))

Note: this is an array formula and must be entered with control + shift + enter in Excel 2019 and older. In the current version of Excel, it will work fine as-is.

In this formula, we pass a range into ISBLANK and ISBLANK returns an array that contains 3 results. If any value in the array is TRUE, the OR function returns TRUE, causing IF to return an empty string (""). If all values in the array are FALSE (i.e. all three cells contain values), OR returns FALSE, and IF returns the result from SUM:

SUM(C5:C7)

IF with logical operators

Another option is to use standard logical operators like ="" and <>"" to test for empty and non-empty cells. To test for any empty cells, use a formula like this:

=IF(OR(C5="",C6="",C7=""),"",SUM(C5:C7))

To test for non-empty cells use <>"" inside the AND function like this:

=IF(AND(C5<>"",C6<>"",C7<>""),SUM(C5:C7),"")

In this formula, notice the SUM function has been moved to the value_if_true argument, and will only run if all 3 cells are not empty .

IF + COUNTA

Finally, you also use the COUNTA function to test for non-empty cells like this:

=IF(COUNTA(C5:C7)=3,SUM(C5:C7),"")

While the COUNT function only counts numeric values, the COUNTA function counts any kind of value (i.e. numbers or text). As long as the range C5:C5 contains three values (numbers or text), the result will be TRUE and the SUM function will run. This doesn’t really make sense for the example shown (which requires numeric input) but it can be used in other situations.