Quiz 1 Flashcards
(40 cards)
=counta (value 1[value 2])
Count non blank cells
To calculate to nearest whole number need to put =round(…..,_____)?
0
To calculate to nearest tenth need to put =round(…..,_____)?
1
To calculate to nearest hundreth need to put =round(…..,_____)?
2
To calculate to nearest tens need to put =round(…..,_____)?
-1
To calculate to nearest hundreds need to put =round(…..,_____)?
-2
=count(value, [value 2])
Determine the number of cells in a range that contain numbers
What does mean?
Not equal to
The syntax for countif (s) and sumif (s)
Number?
=countif(C1:C10, 5)
The syntax for countif (s) and sumif (s)
Text?
Surround text in quotes
The syntax for countif (s) and sumif (s)
Cell reference?
Type in cell reference.
=countif(G1:G10, A2)
The syntax for countif (s) and sumif (s)
“Hard coded” Boolean Expression?
Surround Boolean Expression in quotes
=countif(I1:I10,”>=5”)
The syntax for countif (s) and sumif (s)
Cell reference Boolean Expression?
Surround Boolean expression in quotes and type & before the cell reference
=countif(k1:k10, “>=”&A5)
The syntax for countif (s) and sumif (s)
Wild card?
use asterik
=countif(M1:M10, “USA”*)
The s in averageifs, countifs, sumifs, etc mean that?
AVERAGES A RANGE (MULT CRITERIA & MULTIPLE RANGES) all criterion must be true for the cell to be averaged, counted, or summed.
When using the rank.eq function and you want the numbers to be in ascending order you put what under order?
=rank.eq(number, ref, [order])?
1
When using the rank.eq function and you want the numbers to be in descending order you put what under order?
=rank.eq(number, ref, [order])?
0 or omit it
What does the sumproducts function do?
Multiplies corresponding components in the given arrays and returns the sum of those products
-array arguments must be the same dimension
Syntax for if functions?
Number?
Type in number
if(B3>=6)
Syntax for if function:
For text?
Surround text in quotes
if(B3”USA”,..)
Syntax for if function?
Cell reference?
Type in cell reference
=if(B3=B5,…)
What does the Nested if function do?
if this is true do this, else if this is true, do this,
If you have five letter grade possibilities in the nested if, use ______functions.
four
What is the =AND(logical 1, [logical 2], ) used for?
Returns true if all arguments evaluate to true