Hvordan bruke Excel VLOOKUP-funksjonen

Sammendrag

VLOOKUP er en Excel-funksjon for å slå opp data i en tabell organisert vertikalt. VLOOKUP støtter omtrentlig og nøyaktig samsvar, og jokertegn (*?) For delvis samsvar. Oppslagsverdier må vises i den første kolonnen i tabellen som sendes til VLOOKUP.

Hensikt

Slå opp en verdi i en tabell ved å matche den første kolonnen

Returverdi

Den samsvarte verdien fra en tabell.

Syntaks

= VLOOKUP (verdi, tabell, col_index, (range_lookup))

Argumenter

  • verdi - Verdien du skal se etter i den første kolonnen i en tabell.
  • tabell - Tabellen du kan hente en verdi fra.
  • col_index - Kolonnen i tabellen du kan hente en verdi fra.
  • range_lookup - (valgfritt) TRUE = omtrentlig samsvar (standard). FALSE = nøyaktig samsvar.

Versjon

Excel 2003

Bruksanvisninger

VLOOKUP er en Excel-funksjon for å få data fra en tabell organisert vertikalt. Oppslagsverdier må vises i den første kolonnen i tabellen som sendes til VLOOKUP. VLOOKUP støtter omtrentlig og nøyaktig samsvar, og jokertegn (*?) For delvis samsvar.

Vertikale data | Kolonnetall | Ser bare riktig ut | Matchende moduser | Nøyaktig samsvar | Omtrentlig kamp | Første kamp | Jokertegnkamp | Toveis oppslag | Flere kriterier | # N / A Feil | Videoer

V er for vertikal

Hensikten med VLOOKUP er å få informasjon fra en tabell som er organisert slik:

Ved å bruke ordrenummeret i kolonne B som en oppslagsverdi, kan VLOOKUP få kunde-ID, beløp, navn og stat for enhver bestilling. For eksempel, for å få kundenavnet for ordre 1004, er formelen:

=VLOOKUP(1004,B5:F9,4,FALSE) // returns "Sue Martin"

For horisontale data kan du bruke HLOOKUP, INDEX og MATCH eller XLOOKUP.

VLOOKUP er basert på kolonnetall

Når du bruker VLOOKUP, forestill deg at hver kolonne i tabellen er nummerert, fra venstre. For å få en verdi fra en bestemt kolonne, oppgi riktig nummer som "kolonneindeks". For eksempel er kolonneindeksen for å hente fornavnet nedenfor 2:

Etternavnet og e-postadressen kan hentes med kolonne 3 og 4:

=VLOOKUP(H3,B4:E13,2,FALSE) // first name =VLOOKUP(H3,B4:E13,3,FALSE) // last name =VLOOKUP(H3,B4:E13,4,FALSE) // email address

VLOOKUP ser bare riktig ut

VLOOKUP kan bare se til høyre. Dataene du vil hente (resultatverdier) kan vises i hvilken som helst kolonne til høyre for oppslagsverdiene:

If you need to lookup values to the left, see INDEX and MATCH, or XLOOKUP.

Exact and approximate matching

VLOOKUP has two modes of matching, exact and approximate. The name of the argument that controls matching is "range_lookup". This is a confusing name, because it seems to have something to do with cell ranges like A1:A10. Actually, the word "range" in this case refers to "range of values" - when range_lookup is TRUE, VLOOKUP will match a range of values rather than an exact value. A good example of this is using VLOOKUP to calculate grades.

It is important to understand that range_lookup defaults to TRUE , which means VLOOKUP will use approximate matching by default, which can be dangerous. Set range_lookup to FALSE to force exact matching:

=VLOOKUP(value, table, col_index) // approximate match (default) =VLOOKUP(value, table, col_index, TRUE) // approximate match =VLOOKUP(value, table, col_index, FALSE) // exact match

Note: You can also supply zero (0) instead of FALSE for an exact match.

Exact match

In most cases, you'll probably want to use VLOOKUP in exact match mode. This makes sense when you have a unique key to use as a lookup value, for example, the movie title in this data:

The formula in H6 to find Year, based on an exact match of movie title, is:

=VLOOKUP(H4,B5:E9,2,FALSE) // FALSE = exact match

Approximate match

In cases when you want the best match , not necessarily an exact match , you'll want to use approximate mode. For example, below we want to look up a commission rate in the table G5:H10. The lookup values come from column C. In this example, we need to use VLOOKUP in approximate match mode, because in most cases an exact match will never be found. The VLOOKUP formula in D5 is configured to perform an approximate match by setting the last argument to TRUE:

=VLOOKUP(C5,$G$5:$H$10,2,TRUE) // TRUE = approximate match

VLOOKUP will scan values in column G for the lookup value. If an exact match is found, VLOOKUP will use it. If not, VLOOKUP will "step back" and match the previous row.

Note: data must be sorted in ascending order by lookup value when you use approximate match mode with VLOOKUP.

First match

In the case of duplicate values, VLOOKUP will find the first match when the match mode is exact. In screen below, VLOOKUP is configured to find the price for the color "Green". There are three entries with the color Green, and VLOOKUP returns the price for the first entry, $17. The formula in cell F5 is:

=VLOOKUP(E5,B5:C11,2,FALSE) // returns 17

Wildcard match

The VLOOKUP function supports wildcards, which makes it possible to perform a partial match on a lookup value. For instance, you can use VLOOKUP to retrieve values from a table after typing in only part of a lookup value. To use wildcards with VLOOKUP, you must specify exact match mode by providing FALSE or 0 for the last argument, range_lookup . The formula in H7 retrieves the first name, "Michael", after typing "Aya" into cell H4:

=VLOOKUP($H$4&"*",$B$5:$E$104,2,FALSE)

Read a more detailed explanation here.

Two-way lookup

Inside the VLOOKUP function, the column index argument is normally hard-coded as a static number. However, you can also create a dynamic column index by using the MATCH function to locate the right column. This technique allows you to create a dynamic two-way lookup, matching on both rows and columns. In the screen below, VLOOKUP is configured to perform a lookup based on Name and Month. The formula in H6 is:

=VLOOKUP(H4,B5:E13,MATCH(H5,B4:E4,0),0)

For more details, see this example.

Note: In general, INDEX and MATCH is a more flexible way to perform two-way lookups.

Multiple criteria

The VLOOKUP function does not handle multiple criteria natively. However, you can use a helper column to join multiple fields together, and use these fields like multiple criteria inside VLOOKUP. In the example below, Column B is a helper column that concatenates first and last names together with this formula:

=C5&D5 // helper column

VLOOKUP is configured to do the the same thing to create a lookup value. The formula in H6 is:

=VLOOKUP(H4&H5,B5:E13,4,0)

For details, see this example.

Note: INDEX and MATCH and XLOOKUP are more robust ways to handle lookups based on multiple criteria.

VLOOKUP and #N/A errors

If you use VLOOKUP you will inevitably run into the #N/A error. The #N/A error just means "not found". For example, in the screen below, the lookup value "Toy Story 2" does not exist in the lookup table, and all three VLOOKUP formulas return #N/A:

One way to "trap" the NA error is to use the IFNA function like this:

The formula in H6 is:

=IFNA(VLOOKUP(H4,B5:E9,2,FALSE),"Not found")

The message can be customized as desired. To return nothing (i.e. to display a blank result) when VLOOKUP returns #N/A you can use an empty string like this:

=IFNA(VLOOKUP(H4,B5:E9,2,FALSE),"") // no message

The #N/A error is useful because it tells you something is wrong. In practice, there are many reasons why you might see this error, including:

  • The lookup value does not exist in the table
  • The lookup value is misspelled, or contains extra space
  • Match mode is exact, but should be approximate
  • The table range is not entered correctly
  • You are copying VLOOKUP, and the table reference is not locked

Read more: VLOOKUP without #N/A errors

More about VLOOKUP

  • More VLOOKUP examples
  • VLOOKUP videos
  • 23 tips for using VLOOKUP

Other notes

  • Range_lookup controls whether value needs to match exactly or not. The default is TRUE = allow non-exact match.
  • Set range_lookup to FALSE to require an exact match and TRUE to allow a non-exact match .
  • If range_lookup is TRUE (the default setting), a non-exact match will cause the VLOOKUP function to match the nearest value in the table that is still less than value .
  • When range_lookup is omitted, the VLOOKUP function will allow a non-exact match, but it will use an exact match if one exists.
  • If range_lookup is TRUE (the default setting) make sure that lookup values in the first row of the table are sorted in ascending order. Otherwise, VLOOKUP may return an incorrect or unexpected value.
  • If range_lookup is FALSE (require exact match), values in the first column of table do not need to be sorted.

Related videos

Slik bruker du VLOOKUP for omtrentlige treff I denne videoen ser vi på hvordan du konfigurerer VLOOKUP for å slå opp verdier basert på en omtrentlig kamp. Dette er bra for skattesatser, porto, provisjoner og lignende. Hvordan erstatte nestede IF-er med VLOOKUP I denne korte videoen ser vi på hvordan man erstatter en typisk nestet IF-formel med en VLOOKUP-formel. Sammenlignet med nestede IF-uttalelser er VLOOKUP enklere og mer gjennomsiktig. Det er også lettere å justere senere. Slik grupperer du verdier med VLOOKUP I denne videoen ser vi på en enkel måte å bruke VLOOKUP til å gruppere data i bestemte kategorier. Slik bruker du VLOOKUP med en tabell I denne videoen ser vi på hvordan du bruker VLOOKUP til å slå opp verdier i en Excel-tabell. Slik bruker du INDEX og MATCH med en tabell I denne videoen vil vi se på hvordan du kan bruke INDEX og MATCH med en Excel-tabell. Å bruke INDEX og MATCH med en Excel-tabell er fantastisk grei. Strukturerte referanser inne i en tabell I denne videoen vil vi se på hvordan du bruker strukturert referansesyntaks inne i en tabell.

Interessante artikler...