+ Reply to Thread
Results 1 to 8 of 8

Vlookup student grades

  1. #1
    Vicky
    Guest

    Vlookup student grades

    Hi,
    Thanks in advance for your time. I am trying to resolve a problem I am
    having with vlookups. I understand the concept pretty well so I am not sure
    what I am doing wrong. I have a list of grades for students A, A-, B+, B-,
    etc. and I have a list of corresponding number grades in column 2. I named
    the table "Grades". The row pairs are; A=100, A-=95, B+=90, B=85, B-=80.

    For some reason my B+ students are all getting 80. I wondered if vlookup
    was case-sensitive or if it didnt recognize + and - signs but even if it
    didnt, the B+ student should have an 85.

    Any thoughts,
    Thanks

  2. #2
    Niek Otten
    Guest

    Re: Vlookup student grades

    Hi Vicky.

    Is there a space between B and + in your table?

    --

    Kind Regards,

    Niek Otten

    Microsoft MVP - Excel

    "Vicky" <Vicky@discussions.microsoft.com> wrote in message
    news:4044E6C9-B4FC-40FC-BBD0-D3779D3B156D@microsoft.com...
    > Hi,
    > Thanks in advance for your time. I am trying to resolve a problem I am
    > having with vlookups. I understand the concept pretty well so I am not
    > sure
    > what I am doing wrong. I have a list of grades for students A, A-, B+,
    > B-,
    > etc. and I have a list of corresponding number grades in column 2. I
    > named
    > the table "Grades". The row pairs are; A=100, A-=95, B+=90, B=85, B-=80.
    >
    > For some reason my B+ students are all getting 80. I wondered if vlookup
    > was case-sensitive or if it didnt recognize + and - signs but even if it
    > didnt, the B+ student should have an 85.
    >
    > Any thoughts,
    > Thanks




  3. #3
    Vicky
    Guest

    Re: Vlookup student grades

    No, there isn't. Should there be? I dont think so. I will try.

    "Niek Otten" wrote:

    > Hi Vicky.
    >
    > Is there a space between B and + in your table?
    >
    > --
    >
    > Kind Regards,
    >
    > Niek Otten
    >
    > Microsoft MVP - Excel
    >
    > "Vicky" <Vicky@discussions.microsoft.com> wrote in message
    > news:4044E6C9-B4FC-40FC-BBD0-D3779D3B156D@microsoft.com...
    > > Hi,
    > > Thanks in advance for your time. I am trying to resolve a problem I am
    > > having with vlookups. I understand the concept pretty well so I am not
    > > sure
    > > what I am doing wrong. I have a list of grades for students A, A-, B+,
    > > B-,
    > > etc. and I have a list of corresponding number grades in column 2. I
    > > named
    > > the table "Grades". The row pairs are; A=100, A-=95, B+=90, B=85, B-=80.
    > >
    > > For some reason my B+ students are all getting 80. I wondered if vlookup
    > > was case-sensitive or if it didnt recognize + and - signs but even if it
    > > didnt, the B+ student should have an 85.
    > >
    > > Any thoughts,
    > > Thanks

    >
    >
    >


  4. #4
    Duke Carey
    Guest

    RE: Vlookup student grades

    At the end of your Vlookup, add a ",0)"

    =vlookup("B+", table, 2 , 0)

    "Vicky" wrote:

    > Hi,
    > Thanks in advance for your time. I am trying to resolve a problem I am
    > having with vlookups. I understand the concept pretty well so I am not sure
    > what I am doing wrong. I have a list of grades for students A, A-, B+, B-,
    > etc. and I have a list of corresponding number grades in column 2. I named
    > the table "Grades". The row pairs are; A=100, A-=95, B+=90, B=85, B-=80.
    >
    > For some reason my B+ students are all getting 80. I wondered if vlookup
    > was case-sensitive or if it didnt recognize + and - signs but even if it
    > didnt, the B+ student should have an 85.
    >
    > Any thoughts,
    > Thanks


  5. #5
    Vicky
    Guest

    RE: Vlookup student grades

    Hi Duke,
    What does that do? Does a 0 indicate that it must be an exact match?

    Thank you, it worked.

    Vicky

    "Duke Carey" wrote:

    > At the end of your Vlookup, add a ",0)"
    >
    > =vlookup("B+", table, 2 , 0)
    >
    > "Vicky" wrote:
    >
    > > Hi,
    > > Thanks in advance for your time. I am trying to resolve a problem I am
    > > having with vlookups. I understand the concept pretty well so I am not sure
    > > what I am doing wrong. I have a list of grades for students A, A-, B+, B-,
    > > etc. and I have a list of corresponding number grades in column 2. I named
    > > the table "Grades". The row pairs are; A=100, A-=95, B+=90, B=85, B-=80.
    > >
    > > For some reason my B+ students are all getting 80. I wondered if vlookup
    > > was case-sensitive or if it didnt recognize + and - signs but even if it
    > > didnt, the B+ student should have an 85.
    > >
    > > Any thoughts,
    > > Thanks


  6. #6
    Duke Carey
    Guest

    RE: Vlookup student grades

    Vicky - You're right - it forces an exact match.

    "Vicky" wrote:

    > Hi Duke,
    > What does that do? Does a 0 indicate that it must be an exact match?
    >
    > Thank you, it worked.
    >
    > Vicky
    >
    > "Duke Carey" wrote:
    >
    > > At the end of your Vlookup, add a ",0)"
    > >
    > > =vlookup("B+", table, 2 , 0)
    > >
    > > "Vicky" wrote:
    > >
    > > > Hi,
    > > > Thanks in advance for your time. I am trying to resolve a problem I am
    > > > having with vlookups. I understand the concept pretty well so I am not sure
    > > > what I am doing wrong. I have a list of grades for students A, A-, B+, B-,
    > > > etc. and I have a list of corresponding number grades in column 2. I named
    > > > the table "Grades". The row pairs are; A=100, A-=95, B+=90, B=85, B-=80.
    > > >
    > > > For some reason my B+ students are all getting 80. I wondered if vlookup
    > > > was case-sensitive or if it didnt recognize + and - signs but even if it
    > > > didnt, the B+ student should have an 85.
    > > >
    > > > Any thoughts,
    > > > Thanks


  7. #7
    Ben
    Guest

    RE: Vlookup student grades

    Duke,

    What is the difference between putting a "0", or "false" at the end?

    --
    Thanks,

    Ben


    "Duke Carey" wrote:

    > Vicky - You're right - it forces an exact match.
    >
    > "Vicky" wrote:
    >
    > > Hi Duke,
    > > What does that do? Does a 0 indicate that it must be an exact match?
    > >
    > > Thank you, it worked.
    > >
    > > Vicky
    > >
    > > "Duke Carey" wrote:
    > >
    > > > At the end of your Vlookup, add a ",0)"
    > > >
    > > > =vlookup("B+", table, 2 , 0)
    > > >
    > > > "Vicky" wrote:
    > > >
    > > > > Hi,
    > > > > Thanks in advance for your time. I am trying to resolve a problem I am
    > > > > having with vlookups. I understand the concept pretty well so I am not sure
    > > > > what I am doing wrong. I have a list of grades for students A, A-, B+, B-,
    > > > > etc. and I have a list of corresponding number grades in column 2. I named
    > > > > the table "Grades". The row pairs are; A=100, A-=95, B+=90, B=85, B-=80.
    > > > >
    > > > > For some reason my B+ students are all getting 80. I wondered if vlookup
    > > > > was case-sensitive or if it didnt recognize + and - signs but even if it
    > > > > didnt, the B+ student should have an 85.
    > > > >
    > > > > Any thoughts,
    > > > > Thanks


  8. #8
    Dave Peterson
    Guest

    Re: Vlookup student grades

    Just the spelling. Excel treats them the same.

    Ben wrote:
    >
    > Duke,
    >
    > What is the difference between putting a "0", or "false" at the end?
    >
    > --
    > Thanks,
    >
    > Ben
    >
    > "Duke Carey" wrote:
    >
    > > Vicky - You're right - it forces an exact match.
    > >
    > > "Vicky" wrote:
    > >
    > > > Hi Duke,
    > > > What does that do? Does a 0 indicate that it must be an exact match?
    > > >
    > > > Thank you, it worked.
    > > >
    > > > Vicky
    > > >
    > > > "Duke Carey" wrote:
    > > >
    > > > > At the end of your Vlookup, add a ",0)"
    > > > >
    > > > > =vlookup("B+", table, 2 , 0)
    > > > >
    > > > > "Vicky" wrote:
    > > > >
    > > > > > Hi,
    > > > > > Thanks in advance for your time. I am trying to resolve a problem I am
    > > > > > having with vlookups. I understand the concept pretty well so I am not sure
    > > > > > what I am doing wrong. I have a list of grades for students A, A-, B+, B-,
    > > > > > etc. and I have a list of corresponding number grades in column 2. I named
    > > > > > the table "Grades". The row pairs are; A=100, A-=95, B+=90, B=85, B-=80.
    > > > > >
    > > > > > For some reason my B+ students are all getting 80. I wondered if vlookup
    > > > > > was case-sensitive or if it didnt recognize + and - signs but even if it
    > > > > > didnt, the B+ student should have an 85.
    > > > > >
    > > > > > Any thoughts,
    > > > > > Thanks


    --

    Dave Peterson

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1