Use IF + COUNTIF to perform numerous conditions
The COUNTIF function allows you to construct a small IF formula that carries out plenty of logical expressions.
Combining the IF and COUNTIF functions also let you have more than 254 logical expressions and the effort to type the formula is minimal.
The example shown in above picture checks if the country in cell B3 is equal to one of the countries in cell range B23:D25.
In other words, the COUNTIF function counts how many times a specific value is found in a cell range.
If the value exists at least once in the cell range the IF function adds 100 to the value in C3. If FALSE the formula returns a blank.
becomes
and returns 1. The criteria value is found once in the array (bolded).
The IF function interprets 1 as TRUE and carrys out the value_if_true argument, C3+100.
C3 is 99 and 99 + 100 equals 199, the IF function returns 199 in cell D3.
Download excel *.xlsx file
Use IF + COUNTIF to perform multiple conditions
Related post
If cell equals value from list
Regular formula Formula in cell C3: =IF(COUNTIF($E$3:$E$5,B3),"Yes","No") The COUNTIF function counts how many values in E3:E5 match cell B3, it returns […]
5 easy ways to extract Unique Distinct Values
First, let me explain the difference between unique values and unique distinct values, it is important you know the difference […]
How to create a list of random unique numbers
Question: How do I create a random list of unique numbers from say 1 to 10, without using VBA and […]
This article describes how to count unique distinct values. What are unique distinct values? They are all values but duplicates are […]
If cell contains text from list
This article demonstrates several ways to check if a cell contains a value based on a list. The first example […]
Checks if a logical expression is met. Returns a specific value if TRUE and another specific value if FALSE.
Nested IF statements in a formula are multiple combined IF functions so more conditions and outcomes become possible. They all are […]
If cell contains text from list
This article demonstrates several ways to check if a cell contains a value based on a list. The first example […]
Nested IF statements in a formula are multiple combined IF functions so more conditions and outcomes become possible. They all are […]
If cell contains multiple values
The array formula in cell C3 checks if text string in B3 contains all values in F2:F3. Weekly Blog EMAIL […]
Leave a Reply
How to comment
How to add a formula to your comment
<code>Insert your formula here.</code>
Convert less than and larger than signs
Use html character entities instead of less than and larger than signs.
< becomes < and > becomes >
How to add VBA code to your comment
[vb 1="vbnet" language=","]
Put your VBA code here.
[/vb]
How to add a picture to your comment:
Upload picture to postimage.org or imgur
Paste image link to your comment.