Hi,
I am sorry to say being a not so IT-savvy person, I don't reall
understand the function VLOOKUP.
Thanks n sorry for the trouble....
If you are talking about nesting IF's, you can nest up to seve
functions. For
example: IF(C1="A",20,IF(C1="B",30,IF(C1="C",40,"NOT IN RANGE"))) ha
two
nested IF's.
But frequently there is a better way of doing things that is mor
extensible.
For example:
=VLOOKUP(C1,{"A",20;"B",30;"C",40},2) --> what does the 2 represent?
can be extended in a variety of ways. In addition, the array can b
placed in
a table and cell references used:
=VLOOKUP(C1,E1:F3,2)
with:
Col E F ----->I don't really understan
this part
1 A 20
2 B 30
3 C 40
--> what does the 2 represent? =VLOOKUP(C1,E1:F3,2) ----->I don'
really understand this par