Thread: Which formula?
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Which formula?

The syntax of the VLOOKUP function is described in Excel help.
The $25 is the row part of the cell reference $B$25.
--
David Biddulph

Canon wrote:
Thanks Jacob, but it does not change the value from name to name.
What does the $25,2 stand for?

"Jacob Skaria" wrote:

Create a list like below in Sheet2 in Col A with names and values in
Col B..

Belmont 8
SPS 8.5
Cascade 9
Net 9
Special 9

In Sheet1 B6 you have the name typed
B7 use this formula

=VLOOKUP(B6,Sheet2!$A$1:$B$25,2,TRUE)

--
If this post helps click Yes
---------------
Jacob Skaria


"Canon" wrote:

Office 2007
I am looking for a formula that will do the following;
If cell B6 equals Belmont, then cell B7 should equal 8.00, if cell
B6 equals SPS, then cell B7 should equal 8.50, if cell B6 equals
Cascade or Net or Special, then cell B7 should equal 9.00
I also have to be able to add more names to this formula.