#1   Report Post  
Posted to microsoft.public.excel.misc
swarm6
 
Posts: n/a
Default Simple Look up

I am trying to look up the tuition amount for a class code. All of the
reults of my "look up" are returning the same value. Here's what I've got.
On my "List of class names" sheet Column C is the Class code that I want
looked up, and D is the tuition amount.

=IF(N13="","",LOOKUP(N13,'List of class Names'!C:D))

Any ideas what I'm doing wrong? Thank you.
  #3   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Simple Look up

Try
=IF(N13="","",VLOOKUP(N13,'List of class Names'!C:D,2,true))

Vaya con Dios,
Chuck, CABGx3


"swarm6" wrote:

I am trying to look up the tuition amount for a class code. All of the
reults of my "look up" are returning the same value. Here's what I've got.
On my "List of class names" sheet Column C is the Class code that I want
looked up, and D is the tuition amount.

=IF(N13="","",LOOKUP(N13,'List of class Names'!C:D))

Any ideas what I'm doing wrong? Thank you.

  #4   Report Post  
Posted to microsoft.public.excel.misc
swarm6
 
Posts: n/a
Default Simple Look up

Tried it but got same result. Any more ideas? Thank you.

"CLR" wrote:

Try
=IF(N13="","",VLOOKUP(N13,'List of class Names'!C:D,2,true))

Vaya con Dios,
Chuck, CABGx3


"swarm6" wrote:

I am trying to look up the tuition amount for a class code. All of the
reults of my "look up" are returning the same value. Here's what I've got.
On my "List of class names" sheet Column C is the Class code that I want
looked up, and D is the tuition amount.

=IF(N13="","",LOOKUP(N13,'List of class Names'!C:D))

Any ideas what I'm doing wrong? Thank you.

  #5   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Simple Look up

The formula I suggested works fine in my test setup. I suggest you double
check the EXACT spelling of the Sheet Name on both the TAB and the formula
(including spaces)......

Vaya con Dios,
Chuck, CABGx3




"swarm6" wrote:

Tried it but got same result. Any more ideas? Thank you.

"CLR" wrote:

Try
=IF(N13="","",VLOOKUP(N13,'List of class Names'!C:D,2,true))

Vaya con Dios,
Chuck, CABGx3


"swarm6" wrote:

I am trying to look up the tuition amount for a class code. All of the
reults of my "look up" are returning the same value. Here's what I've got.
On my "List of class names" sheet Column C is the Class code that I want
looked up, and D is the tuition amount.

=IF(N13="","",LOOKUP(N13,'List of class Names'!C:D))

Any ideas what I'm doing wrong? Thank you.



  #6   Report Post  
Posted to microsoft.public.excel.misc
swarm6
 
Posts: n/a
Default Simple Look up

Thank you. Actually I didn't type it in. I selected the range with the
mouse. So I guess the spelling can't be wrong.

"CLR" wrote:

The formula I suggested works fine in my test setup. I suggest you double
check the EXACT spelling of the Sheet Name on both the TAB and the formula
(including spaces)......

Vaya con Dios,
Chuck, CABGx3




"swarm6" wrote:

Tried it but got same result. Any more ideas? Thank you.

"CLR" wrote:

Try
=IF(N13="","",VLOOKUP(N13,'List of class Names'!C:D,2,true))

Vaya con Dios,
Chuck, CABGx3


"swarm6" wrote:

I am trying to look up the tuition amount for a class code. All of the
reults of my "look up" are returning the same value. Here's what I've got.
On my "List of class names" sheet Column C is the Class code that I want
looked up, and D is the tuition amount.

=IF(N13="","",LOOKUP(N13,'List of class Names'!C:D))

Any ideas what I'm doing wrong? Thank you.

  #7   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Simple Look up

What happens if you change the "TRUE" to "FALSE" in the formula?

=IF(N13="","",VLOOKUP(N13,'List of class Names'!C:D,2,FALSE))

Make sure the ClassCode column is the same format as N13 and the values are
numbers for numbers or text fot text.......

Vaya con Dios,
Chuck, CABGx3



Vaya con Dios,
Chuck, CABGx3



"swarm6" wrote:

Thank you. Actually I didn't type it in. I selected the range with the
mouse. So I guess the spelling can't be wrong.

"CLR" wrote:

The formula I suggested works fine in my test setup. I suggest you double
check the EXACT spelling of the Sheet Name on both the TAB and the formula
(including spaces)......

Vaya con Dios,
Chuck, CABGx3




"swarm6" wrote:

Tried it but got same result. Any more ideas? Thank you.

"CLR" wrote:

Try
=IF(N13="","",VLOOKUP(N13,'List of class Names'!C:D,2,true))

Vaya con Dios,
Chuck, CABGx3


"swarm6" wrote:

I am trying to look up the tuition amount for a class code. All of the
reults of my "look up" are returning the same value. Here's what I've got.
On my "List of class names" sheet Column C is the Class code that I want
looked up, and D is the tuition amount.

=IF(N13="","",LOOKUP(N13,'List of class Names'!C:D))

Any ideas what I'm doing wrong? Thank you.

  #8   Report Post  
Posted to microsoft.public.excel.misc
swarm6
 
Posts: n/a
Default Simple Look up

I did a test. It is only finding the last value in my array (the bottom row)

"CLR" wrote:

The formula I suggested works fine in my test setup. I suggest you double
check the EXACT spelling of the Sheet Name on both the TAB and the formula
(including spaces)......

Vaya con Dios,
Chuck, CABGx3




"swarm6" wrote:

Tried it but got same result. Any more ideas? Thank you.

"CLR" wrote:

Try
=IF(N13="","",VLOOKUP(N13,'List of class Names'!C:D,2,true))

Vaya con Dios,
Chuck, CABGx3


"swarm6" wrote:

I am trying to look up the tuition amount for a class code. All of the
reults of my "look up" are returning the same value. Here's what I've got.
On my "List of class names" sheet Column C is the Class code that I want
looked up, and D is the tuition amount.

=IF(N13="","",LOOKUP(N13,'List of class Names'!C:D))

Any ideas what I'm doing wrong? Thank you.

  #9   Report Post  
Posted to microsoft.public.excel.misc
CLR
 
Posts: n/a
Default Simple Look up

Yeah, probably it's a formatting difference problem between N13 and the
ClassCode column in your array.....see my previous post

Vaya con Dios,
Chuck, CABGx3



"swarm6" wrote:

I did a test. It is only finding the last value in my array (the bottom row)

"CLR" wrote:

The formula I suggested works fine in my test setup. I suggest you double
check the EXACT spelling of the Sheet Name on both the TAB and the formula
(including spaces)......

Vaya con Dios,
Chuck, CABGx3




"swarm6" wrote:

Tried it but got same result. Any more ideas? Thank you.

"CLR" wrote:

Try
=IF(N13="","",VLOOKUP(N13,'List of class Names'!C:D,2,true))

Vaya con Dios,
Chuck, CABGx3


"swarm6" wrote:

I am trying to look up the tuition amount for a class code. All of the
reults of my "look up" are returning the same value. Here's what I've got.
On my "List of class names" sheet Column C is the Class code that I want
looked up, and D is the tuition amount.

=IF(N13="","",LOOKUP(N13,'List of class Names'!C:D))

Any ideas what I'm doing wrong? Thank you.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Simple Formula (I thought) csandi Excel Worksheet Functions 3 November 14th 05 08:47 PM
Looking to create a simple user form with lookup Tim Excel Discussion (Misc queries) 5 November 14th 05 04:57 PM
Simple Simple Excel usage question BookerW Excel Discussion (Misc queries) 1 June 23rd 05 10:06 PM
Help with what should be a simple formula B Millar via OfficeKB.com Excel Worksheet Functions 2 June 16th 05 04:18 PM
Simple But Stumped Brian Keanie Excel Discussion (Misc queries) 3 February 5th 05 02:56 AM


All times are GMT +1. The time now is 05:34 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"