Exceltechie.com

Easiest way to learn excel on the planet
Facebook-exceltechie Twitter-exceltechie Linkedin-exceltechie
|| Novice || Beginner || Intermediate || Advanced || Specialist || Expert ||
Types of Formula

Financial     Logical     Informational     Text 
Mathematical     Statistical     Lookup     Reference  Formula Errors
VLookup

VLookup is Vertical Lookup

Syntax
VLOOKUP( Lookup_value, table_array, Col_index_num, [range_lookup])

lookup_valueThe value that is being searched
table_arrayThe data table containing lookup value and the corresponding column value
col_index_numThe Column number to fetch
[range_lookup]Update as 0 - Mostly Zero unless required to fetch nearest values

Warning VLookup cannot move to the left of a lookup value
Warning You may use VLookup Wildcard characters like "?","*", etc.. Eg: Vlookup( "*"&"Data"&"?",array, col_index,0)
HLookup

HLookup is Horizontal Lookup

Syntax
HLOOKUP( Lookup_value, table_array, row_index_num, [range_lookup])


lookup_valueThe value that is being searched
table_arrayThe data table containing lookup value and the corresponding row value
row_index_numThe row number to fetch
[range_lookup]Update as 0 - Mostly Zero unless required to fetch nearest values

Warning HLookup cannot move to the Top of a lookup value
Lookup - Vector Form

Lookup in the Vector form is used to lookup and value and provide its corresponding value from result vector

Syntax
LOOKUP(lookup_value, lookup_vector, result_vector)


lookup_valueThe value that lookup vector searches for..
lookup_vectorEither One Row or One Column of Data Range
result_vectorEither One Row or One Column of Data Range with same size as lookup_vector

Warning Lookup vector data has to be arranged in Ascending order for better results

Warning The Lookup function returns the last matched value unlike VLookup and HLookup
Lookup - Array Form

Lookup in the Array form is used to lookup a value and provide its corresponding value

Syntax
LOOKUP(lookup_value, array)


lookup_valueThe value that lookup array searches for..
arrayRange of Cells

Warning Lookup has better alternatives as Vlookup and Hlookup but is available for compatibility with other spreadsheet programs