> and >=
What is greater than and greather than and equal to
returns the number of cells with numerical data in them
What is COUNT
reduces the amount of decimal places a number has
What is ROUND
returns the amount of blank cells in a range
What is COUNTBLANK
that will give you the number of cells that contain the word Exam between B1 and B22
What is =COUNTIF(B1:B22, "Exam")
that gives you the amount of blank cells from B1 to B22
What is =COUNTBLANK(B1:B22)
$C$4
What is C4 has an absolute reference?
returns a logical answer
What is IF
keeps the cell referenced in the same place
What is the absolute cell reference?
that will say High if the data in A22 is 15 or greater and Low if it isn't
What is =IF(A22>=15, "High", "Low")
that will say order more if the stock in B33 is less than 6 or Stock Ok if not less than 6
What is =IF(B33<6, "Order More", "Stock Ok")
the order that excel will look at a formula
What is parenthesis, exponents, division and/or multiplication, addition and/or subtraction?