You are on page 1of 10

1 What’s the correct sorting function to list Colours in alphabetical order?

A B
29 Colour Number
30 Red 100
31 Orange 112
32 Yellow 90
33 Green 85
34 Blue 120

ASCENDING (A TO Z )

DESCENDING (Z TO A )

2 Based on the valuesEQUAL


in Cells
TO AB77:B81
TO Z , what function can automatically
return the value in Cell C77?
B C
76 Sales
77 $794 $721
78 $721
79 $854
80 $912
81 $1,020

=SMALLEST()

=BOTTOM()
=LOWEST ()

=FLOOR()

=MIN()

3 What tool would stop the words in Cell A55 from overflowing into Cell
B55 ?
A B
55 Microsoft can help you track and understand data for better insight
and

wrap Text

Cell Styles

Data Validation

Text Flow

Conditional Formatting

4 What does clicking the paintbrush button below do ?


Paints over Cell B2 with whichever format you choose

Changes the font style to paintbrush strokes

Allows you to choose a fill colour for Cell B2

Copies the format of Cell B2

Pastes the most recent item from your clipboard

5 What value would be returned based on the formula in Cell A49 ?


0

6 What formula would produce the value in Cell C25 ?

A B C
24 Item Type Result
25 Door F Door F
26 Table C
27 Chair C
28 Desk F

=CONCATENATE(A25,B25)

= CONCATENATE (A25,” ”, B25)

=RIGHT(A25,B25)

= LEFT(A25,B25)

=CONCATENATE(ITEM,” “, TYPE)
7 You need to divide the number of cars by number of people to calculate
cars per person on day 1
A B C D
91 Day Cars People Cars Per Person
92 1 10 3 3.33
93 2 20 4 5.00
94 3 30 5 6.00
95 4 40 6 6.67

=B93/C92

=B92/C92

=A92/B92

= 3*1

=10*3

8 Based on the values in Cells B77:B81 , what function can automatically return the value in Cell
C77 ?

B C
76 Sales
77 $794 $1,020
78 $721
79 $854
80 $912
81 $1,020
=MAX ()

=TOP ()

=BIGGEST ()

= HIGHEST ()

=CEILING ()

9 Based on the values in Cells A51:A55 , what formula can you copy and paste
into cells B51:B55 to return the values shown ?
A B
51 Red Yes
52 Red Yes
53 Red Yes
54 Blue No
55 Red Yes

=SUMIF(A76=”Red’, ”Yes”, ”No”

=IFNA(A51=”Red”, ”Yes”, ”No”)

=COUNTIF(A51=”Red”,”Yes”,”No”)

= SHOWIF(A51=”Red”,”Yes”,”No”)

=IF(A51=”Red”,”Yes”,”No”)
10 What value would be returned based on the formula in Cell D 49 ?

D E F
42 Conference Room Location Staff ID
43 D East 19106
44 C North 19122
45 A South 19107
46 E South 19104
47 B South 19147
48
49 =COUNTIFS(E42:E47,”South”,F42:F47,”19104”)

11 If the formula in Cell D49 is copied to Cells E49:F49 , what sequence of


values would be generated in Cells D49:F49 ?

D E F
42 Conference Room Location Staff ID
43 D East 19106
44 C North 19122
45 A South 19107
46 E South 19104
47 B South 19147
48
49 =$D$44

C, North,19122

C, A, E

C, South,19104

C, South, South

C, C, C

12 If you drag the formula in Cell J48, how will it be displayed in Cell J50?
I J K L
47 Wholesale Price Consumer Price Markup
48 $9.99 =I48*$L$49 140%
49 $13.99 115%
50 $25.99 120%
=I50*L$50
13 The tax in Cell F2 must be applied to the values in Cells I2:I4 to calculate the
New Price in Column J. =I50*$L$50

J50*L$48
F G H I J
1 Tax Items Old Price New Price
I50*$L$49
2 15% Laptops $1,199.99
3 Monitors $1,599.99
4 =J50*$L$49 Tablets $799.99

What formula can be entered in Cell J2 and dragged down to cells J3:J4 to
accomplish this?

=I2+(F2*$I$2)

=I2+($F$2*I2)

=I2+(F2*I2)

=I2+($F$2*I2)

=I2+(F2$*I2)

You might also like