Count based on 2 or more conditions.
The COUNTIFS function, similar to Excel's COUNTIF function, counts up the number of times data in two or more ranges of cells meets multiple criteria.
Count totals that are greater than 20 and less than 50.
The COUNTIFS function, similar to Excel's COUNTIF function, counts up the number of times data in two or more ranges of cells meets multiple criteria.
Countifs with 2 or more conditions.
The COUNTIFS function, similar to Excel's COUNTIF function, counts up the number of times data in two or more ranges of cells meets multiple criteria.
Getting row of cell with maximum value.
Getting row of cell with maximum value.
This first picks the maximum value in col. H, so you can't have anything else in col. H besides your list of values you want to check at least nothing that would be a greater number than any of those values.
The MATCH function returns the relative position in col H of the maximum number, and that relative position is simply the row number.
Getting row that meet 2 or more conditions.
Getting row that meet 2 or more conditions.
This MATCH formula, as an ARRAY (CTRL-SHIFT-ENTER), return the row number once meet the following conditions:
It has 'a' in col. E and '11' in col. F
You can use concatenate (&) to add more conditions.
Return text value found most frequently in a column.
The MODE function, one of Excel's statistical functions, tells you the most frequently occurring value in a list of numbers.
The syntax for the MODE function is:
= MODE ( number1, number2, ... number255 ).
Return the sum of the highest 3 values in Column H (rng_h).
The Percentile function returns the nth percentile from a set of values.
The syntax for the Percentile function is:
Percentile( array, nth_percentile )
array is a range or array from which you want to return the nth percentile.
nth_percentile is the percentile value. It can be a value between 0 and 1.
Return the average of the highest 3 values in Column H (rng_h), rounding it to one digit.
The Percentile function returns the nth percentile from a set of values.
The syntax for the Percentile function is:
Percentile( array, nth_percentile )
array is a range or array from which you want to return the nth percentile.
nth_percentile is the percentile value. It can be a value between 0 and 1.
Sumifs with 2 or more conditions.
Excel 2007's SUMIFS function is similar to the SUMIF function except that it is used to add up data only if specific criteria are met in two or more ranges of cells.
Count how many times a charcter in a range.
Return the number of characters in all values and text in Range D. This is a case sensitive, meaning "d" and "D" is not the same.
Return the Sum based on 2 conditions, one in column and other in row.
One condition is vertical and the other is horizontal. 2 Way Lookup to lookup value at the intersection corresponding to a given row & column values.
Return the product of 2 arrays, one of which is a binary value.
Return the product of 2 arrays, one of which is a binary value composed of 1 and 0 only.
The formula actually divides the binary value to 10 different values, each is 1 or 0.
What we get is: 1X5 + 0X12+0*27+1X44 and so on.
Count unique items in a list with conditions [shelly].
It counts how many unique items are in 'Column C' subject to the conditions that there is 'b' in Column D.