XLOOKUP / VLOOKUP Flashcards

1
Q

XLOOKUP

A

ONLY if you pay for Microsoft 365

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Excel doesn’t care if

A

lower or upper case

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

when you enter the parenthesis (,

A

excel knows formula & will tell what options

*CURRENTLY IT WANTS BOLD FACE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

BOLD FACE is what formula wants next

A

lookup_value

*now just click on cell

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

3 required perimeters do NOT

A

have brackets around them

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

You gave it the 1st parameter so now the boldface

A

is on the 2nd parameter (after the comma)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

lookup_array

A

that is the range of cells that it’s going to search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

to search the WHOLE column

A

click on top of column (E for example)

excel enters:
E:E,

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

return_array

A

what should it return

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

1 optional parameter is
{if_not_found}

A

,”Not Found”,

*this means that Excel will type “Not Found” in the cell if the
1st parameter is not in the 2nd parameter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

After bracketed item AND a comma, Excel gives

A

options of 0, -1, 1,2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

VLOOKUP is clunkier

A

have to enter column 2 instead of 6 because that’s the table array we’ve given it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

N/A

A

looks like error message but also saying not a match

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How must the lookup column appear in the
VLOOKUP table array?

A

= as the leftmost column in the array

  • This is a major restriction for using VLOOKUP.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

=VLOOKUP(Lucas,B:E,4,False)

A

This means to look for “Lucas”

Where: Anywhere in columns B:E (ANY row!!!))

*If Lucas is found, then please type the word/# in the 4th SPOT!!!!!!

*If Lucas is not found, please type the word “False”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Why would you use
VLOOKUP
with the last input parameter set to
TRUE
?

A

to require only an approximate match

Correct

17
Q

How can you tell whether a function parameter is optional?

A

It appears in brackets in the usage template.

Correct

18
Q

Which function should you use with
VLOOKUP
to trap an error?

A

Correct:

IFERROR accepts two parameters or arguments: the actual function call and the return value upon error.

19
Q

What is the potential problem with specifying columns in a function call such as

A

The column headers may be included in the ranges.

Correct