Top Bottom Rules

A) highlight cells meeting specified criteria with a specified color, font, or border.
B) format cells based upon their value in relation to the value of other cells such as the top 10%.
C) is a horizontal gradient or solid fill indicating the cell's relative value compared to other selected cells.
D) moves the data from the top of the workbook to the bottom for analysis.

B

Computer Science & Information Technology

You might also like to view...

What is the value of numbers.capacity() after the following code?

vector numbers; numbers.reserve(100) a. 0 b. 10 c. 100 d. unknown

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

1. Dynamically created variables have no name. 2. If p1 and p2 are both pointers that point to integers in memory, the condition p1==p2 will be true if the values that are in those memory locations are the same. 3. Even though pointers point to addresses which are integers, you can not assign an integer to a pointer variable. 4. In the following statement, all the variables are pointers. int* p1, p2; 5. A pointer can be stored in an integer variable.

Computer Science & Information Technology