Geavanceerde Excel-functies
Agata Bak-Geerinck
Product Owner Data, Telenet

Eerder op DataCamp:
VLOOKUP() - verticale zoekopdrachtHLOOKUP() - horizontale zoekopdrachtBeperkingen:
VLOOKUP() - gezochte waarde moet rechts van de zoekwaarde staanHLOOKUP() - gezochte waarde moet onder de zoekwaarde staan

Array - een rij, kolom of combinatie daarvan met waarden$^1$

Een Excel-tabel bestaat uit:
XLOOKUP() - Een zoekfunctie die in elke richting kan zoeken, dankzij arrays.
NIEUW sinds Excel 2021!
Syntax: XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode])



Verkoop Labels in april? = INDEX ( B2:D4, 2, 2)
INDEX(array, row_num, [column_num])MATCH(lookup_value, lookup_array, [match_type])
Waar vind je Verkoop Labels voor april?
= Match ( "Labels", Categories, 0) = rij 2
= Match ( "APR", Months, 0) = kolom 2
= INDEX ( B2:D4, 2, 2)
= INDEX(array, MATCH(rows), MATCH(columns))
= INDEX ( Sales, MATCH( "Labels", Categories, 0), MATCH( "APR", Months, 0) )
Commerce-dataset:

Data in één oogopslag:
Bekijk de Metadata-sheet voor meer info.
Geavanceerde Excel-functies