Intermediate Flashcards
Formula that will multiply corresponding components in the given arrays, and will then return the sum of the products.
=SUMPRODUCT (array1, [array2], [array3],…)
Option that allows you to restrict the type of data and number of characters that the user enters into a cell. If a person ignores limitations and types them in anyway, an error message will pop up.
Go to Data tab, click on Data Validation.
Formula that will return the absolute value of a number in the location you desire
= ABS(number)
Formula that returns the character specified by a number. It automatically translates code page numbers into characters.
=CHAR (number)
Formula removes all characters that cannot be printed
=CLEAN(cell reference)
Formula that returns a code (numeric) for the first character used in a text string
=CODE(“text”)
Formula that compares two text strings and returns the word TRUE if they are exactly the same, or FALSE if they are not.
=EXACT(text1, text2)
Formula that returns the arithmetic average (aka mean) of a list of numbers. Even if there are letters, it counts them as zero.
=AVERAGEA(value1, value2,…)
Formula that calculates the arithmetic average (aka mean) of a set of values, only of values that meet certain criteria.
=AVERAGEIF(range, criteria, [average_range]
Formula that calculates the arithmetic average (aka mean) of a set of values, only of values that meet multiple criteria.
=AVERAGEIFS(average_range,criteria_range1, criteria1, [criteria_range2, criteria 2].
An informative formula that tells you about the contents, location, formatting, and properties of a specific cell.
=CELL(“address”, cell location), to find the location of the cell
=CELL(“col”, cell location), to find the column number.
=CELL(“row”, cell location), to find the row number
=CELL(“type”, cell location), where b is for blank, l is for text, and v is for value.
=CELL(“prefix”, cell location), where it will return a ‘ for left, ^ for centre, and “ for right. When there is nothing, it will be displayed as numeric entries.
=CELL(“width”, cell location), to find out the width of a cell.
=CELL(“format”, cell location), which will tell you the number format of the cell. It is necessary to download the number codes for format for future reference.
=CELL(“parentheses”, cell location), where 1 is yes and 0 is no.
=CELL(“color”, cell location,) will tell you if the cell is formatted for coloured negatives. It will return 1 for yes, 0 for no.
=CELL(“protect”), will tell you if the cell is locked (1) or unlocked (0).
=CELL(Filename, D5), will tell you the name of the file.
Formula that will return the Kth largest value in a previously defined data set. You can use this function to select a value based on its standing when compared to the other values, including the highest score, second-place or third-place score.
=LARGE(array,k)
Formula that returns the largest value in a set of values.
=MAX(number1, number 2,…)
Formula that returns the median number of a set of numbers.
=MEDIAN(number1, number 2,…)
Formula that returns the smallest value in a set of values.
=MIN(number1, number 2,…)