Syntax for VLOOKUP is
--------------------------
=VLOOKUP("searchingitem",searchingrange,displaycellindex,FALSE)
searchingitem -----------------which word ur going to search in excel sheet
searchingrange-------------range of ur search
displaycellindex --------------------which one is going to display
FALSE-------------------default value
take the example
---------------------
A B C D
Johnnew colonyballnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
IN The above example data's are available in a1 to d8 cells
now we are using vlookup in e1 cell means
select e1 cell and type =VLOOKUP("12",a1:d8,1,FALSE)
then in your e1 cell 12 is appear
explanation
---------------
VLOOKUP Is searching 12 in specified area of 1st column,ie A if it is appear then result comes 12
2rd example
----------------
select e1 cell and type =VLOOKUP("12",a1:d8,2,FALSE)
then in your e1 cell new colony is appear
explanation
---------------
VLOOKUP Is searching 12 in specified area of 1st column,ie A if it is appear then take the value of the next cell of the same row and display in e1 cell
Syntax for HLOOKUP is
--------------------------
=HLOOKUP("searchingitem",searchingrange,displaycellindex,FALSE)
searchingitem -----------------which word ur going to search in excel sheet
searchingrange-------------range of ur search
displaycellindex --------------------which one is going to display
FALSE-------------------default value
take the example
---------------------
A B C D
Johnnew colonyballnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
12new colonyJohnnandhanam
IN The above example data's are available in a1 to d8 cells
now we are using vlookup in e1 cell means
select e1 cell and type =HLOOKUP("12",a1:d8,1,FALSE)
then in your e1 cell 12 is appear
explanation
---------------
HLOOKUP Is searching 12 in specified area of 1st column,ie A if it is appear then result comes 12
2rd example
----------------
select e1 cell and type =HLOOKUP("12",a1:d8,2,FALSE)
then in your e1 cell 12 is appear
explanation
---------------
HLOOKUP Is searching 12 in specified area of 1st column,ie A if it is appear then take the value of the next cell of the same COLUMN and display in e1 cell
please go and visit this website,all about excel is available in this site