wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

IF & VLOOKUP Functions

Total questions: 10

Worksheet time: 6mins

Name
Class
Date
1.

What does the > logical operator do?

a)

Less than

b)

Not equal to

c)

More than or euqal to

d)

More than

2.

>=10 what does this logical operator mean?

a)

More than or equal to 10

b)

Not equal to 10

c)

More than 10

d)

Less than or equal 10

3.

The IF function's syntax can be broken down in three parts

=IF(logical_test, [value_if_true], [value_if_false])

select from below the correct formula

a)

=IF(A1="Umbrella", "It will rain", "It won't rain")

b)

=IF(A1=1, A2+10, No ready yet)

c)

=IF(A1>"10", "Hello", Goodbye)

d)

=IF(A!<>A2), ("Buy"), ("Sell")

4.

Looking at the data in the picture, use the IF function to add 10mph to the NEW (mph) column, if the cars are faster than 260mph, if they are not faster than 260mph return "Not a Fast Car"

(a)  

5.

When setting up two tables to use the VLOOKUP fucntion, is it recommended to name the tables?

a)

TRUE

b)

FALSE

6.

You have been given a spreadhseet that has the following VLOOKUP function,

=VLOOKUP([@name], Table_Master, 8, 0)

What is the number 8 in the formula refering to?

a)

The name of the table where you are getting the data from

b)

The value you are looking for

c)

The column number where the data you want is located

d)

The number of characters the function will return

7.

When writting a VLOOKUP function, the last bit of informatio you need to add to the function is if you want an Approximate match or an Exact match. If you write FALSE, what would the function return?

a)

Approximate match

b)

Exact match

c)

Approximate and Exact match

d)

None of the options

8.

Explore the VLOOKUP function syntax below

=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

What does it mean by table_array?

a)

This is the table where I am copying the information to

b)

This is the number of columns for the table

c)

This is the table where I can find the information I need

d)

This is the type of data the table will return

9.

When using Formulas and Functions and using text within them, you need to write them in between " "

a)

TRUE

b)

FALSE

10.

Write the 3 mistakes with the Function below

=IF([@[Miles Per Hour (mph)]]<260, [@[Average Cost]]-"20000" Fast Car)

(a)