#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default VLookup help

What is from with this Vlookup? I formatted all cells as text, copy paste
special value all data, however, I don't receive the data in column 3.

The following is displayed: =VLOOKUP(D7,Data!B7:D11,3,FALSE)

The spreadsheets are below.

Cust No Name Item

12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt

Cust No Name Cust No Item

12582 smith 12582 =VLOOKUP(D7,Data!B7:D11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556


Thanks





--
AcctCA755
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default VLookup help

What is in D7?

Instead of D7 in your VLOOKUP shouldn't you have A7 or C7 (custno)?

I am assuming first set is your 'Data' sheet and second set where you have
your VLOOKUP in D7...

"AcctCA755" wrote:

What is from with this Vlookup? I formatted all cells as text, copy paste
special value all data, however, I don't receive the data in column 3.

The following is displayed: =VLOOKUP(D7,Data!B7:D11,3,FALSE)

The spreadsheets are below.

Cust No Name Item

12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt

Cust No Name Cust No Item

12582 smith 12582 =VLOOKUP(D7,Data!B7:D11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556


Thanks





--
AcctCA755

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default VLookup help

Sorry, should have stated the first column is actually Column C. I did not
start the data at column A.

--
AcctCA755


"AcctCA755" wrote:

What is from with this Vlookup? I formatted all cells as text, copy paste
special value all data, however, I don't receive the data in column 3.

The following is displayed: =VLOOKUP(D7,Data!B7:D11,3,FALSE)

The spreadsheets are below.

Cust No Name Item

12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt

Cust No Name Cust No Item

12582 smith 12582 =VLOOKUP(D7,Data!B7:D11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556


Thanks





--
AcctCA755

  #4   Report Post  
Posted to microsoft.public.excel.misc
GD GD is offline
external usenet poster
 
Posts: 83
Default VLookup help

It looks like you need the formula to read VLOOKUP(B7,Data!B7:D11,3,FALSE)

The Lookup_value is the cell that links both sets of information.

--
GD


"AcctCA755" wrote:

What is from with this Vlookup? I formatted all cells as text, copy paste
special value all data, however, I don't receive the data in column 3.

The following is displayed: =VLOOKUP(D7,Data!B7:D11,3,FALSE)

The spreadsheets are below.

Cust No Name Item

12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt

Cust No Name Cust No Item

12582 smith 12582 =VLOOKUP(D7,Data!B7:D11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556


Thanks





--
AcctCA755

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default VLookup help

Here is the info again, I started the data at Column A.

Cust No Name Item

12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt


Cust No Name Cust No Item

12582 smith 12582 =VLOOKUP(C7,Data!A7:C11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556

Thanks







--
AcctCA755


"AcctCA755" wrote:

What is from with this Vlookup? I formatted all cells as text, copy paste
special value all data, however, I don't receive the data in column 3.

The following is displayed: =VLOOKUP(D7,Data!B7:D11,3,FALSE)

The spreadsheets are below.

Cust No Name Item

12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt

Cust No Name Cust No Item

12582 smith 12582 =VLOOKUP(D7,Data!B7:D11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556


Thanks





--
AcctCA755



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default VLookup help

The value in C7 may not be text, so try it like this:

=VLOOKUP(C7&"",Data!A$7:C$11,3,FALSE)

Alternatively, you might have numbers in your data sheet and text in
your other sheet, so try it like this:

=VLOOKUP(C7+0,Data!A$7:C$11,3,FALSE)

Hope this helps.

Pete

On Dec 11, 5:33*pm, AcctCA755
wrote:
Here is the info again, I started the data at Column A.

Cust No Name * *Item

12582 * smith * Bean
5400 * *Jones * Corn
9988 * *Brown * apple
2255 * *Long * *Dress
22556 * Shaw * *Shirt

Cust No Name * *Cust No Item

12582 * smith * 12582 * =VLOOKUP(C7,Data!A7:C11,3,FALSE)
5400 * *Jones * 5400 * *
9988 * *Brown * 9988 * *
2255 * *Long * *2255 * *
22556 * Shaw * *22556

Thanks *

--
AcctCA755



"AcctCA755" wrote:
What is from with this Vlookup? I formatted all cells as text, copy paste
special value all data, however, I don't receive the data in column 3.


The following is displayed: =VLOOKUP(D7,Data!B7:D11,3,FALSE)


The spreadsheets are below.


Cust No * *Name * *Item


12582 * * *smith * Bean
5400 * * * Jones * Corn
9988 * * * Brown * apple
2255 * * * Long * *Dress
22556 * * *Shaw * *Shirt


Cust No * *Name * *Cust No Item


12582 * * *smith * 12582 * =VLOOKUP(D7,Data!B7:D11,3,FALSE)
5400 * * * Jones * 5400 * *
9988 * * * Brown * 9988 * *
2255 * * * Long * *2255 * *
22556 * * *Shaw * *22556 *


Thanks


--
AcctCA755- Hide quoted text -


- Show quoted text -


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default VLookup help

Thanks everyone for your help, the problem has been solved. I formatted the
spreadsheet to General, instead of text.
--
AcctCA755


"Pete_UK" wrote:

The value in C7 may not be text, so try it like this:

=VLOOKUP(C7&"",Data!A$7:C$11,3,FALSE)

Alternatively, you might have numbers in your data sheet and text in
your other sheet, so try it like this:

=VLOOKUP(C7+0,Data!A$7:C$11,3,FALSE)

Hope this helps.

Pete

On Dec 11, 5:33 pm, AcctCA755
wrote:
Here is the info again, I started the data at Column A.

Cust No Name Item

12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt

Cust No Name Cust No Item

12582 smith 12582 =VLOOKUP(C7,Data!A7:C11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556

Thanks

--
AcctCA755



"AcctCA755" wrote:
What is from with this Vlookup? I formatted all cells as text, copy paste
special value all data, however, I don't receive the data in column 3.


The following is displayed: =VLOOKUP(D7,Data!B7:D11,3,FALSE)


The spreadsheets are below.


Cust No Name Item


12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt


Cust No Name Cust No Item


12582 smith 12582 =VLOOKUP(D7,Data!B7:D11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556


Thanks


--
AcctCA755- Hide quoted text -


- Show quoted text -



  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default VLookup help

Well, thanks for letting us know.

Pete

"AcctCA755" wrote in message
...
Thanks everyone for your help, the problem has been solved. I formatted
the
spreadsheet to General, instead of text.
--
AcctCA755


"Pete_UK" wrote:

The value in C7 may not be text, so try it like this:

=VLOOKUP(C7&"",Data!A$7:C$11,3,FALSE)

Alternatively, you might have numbers in your data sheet and text in
your other sheet, so try it like this:

=VLOOKUP(C7+0,Data!A$7:C$11,3,FALSE)

Hope this helps.

Pete

On Dec 11, 5:33 pm, AcctCA755
wrote:
Here is the info again, I started the data at Column A.

Cust No Name Item

12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt

Cust No Name Cust No Item

12582 smith 12582 =VLOOKUP(C7,Data!A7:C11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556

Thanks

--
AcctCA755



"AcctCA755" wrote:
What is from with this Vlookup? I formatted all cells as text, copy
paste
special value all data, however, I don't receive the data in column
3.

The following is displayed: =VLOOKUP(D7,Data!B7:D11,3,FALSE)

The spreadsheets are below.

Cust No Name Item

12582 smith Bean
5400 Jones Corn
9988 Brown apple
2255 Long Dress
22556 Shaw Shirt

Cust No Name Cust No Item

12582 smith 12582 =VLOOKUP(D7,Data!B7:D11,3,FALSE)
5400 Jones 5400
9988 Brown 9988
2255 Long 2255
22556 Shaw 22556

Thanks

--
AcctCA755- Hide quoted text -

- Show quoted text -





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
VLookUp - Does the VLookUp return the exact information? Cpviv Excel Worksheet Functions 2 October 28th 08 09:57 AM
Vlookup in vlookup - taking the result as array name SupperDuck Excel Worksheet Functions 2 June 2nd 07 11:05 AM
Combine VLOOKUP and IF function so #NA isn't returned as a value from VLOOKUP buffgirl71 Excel Discussion (Misc queries) 12 November 14th 06 11:36 PM
Vlookup -=VLOOKUP(F9,LookUp1!$A$2:$B$1504,2,FALSE) MikeR-Oz New Users to Excel 1 March 22nd 06 09:01 AM
Vlookup info being used without vlookup table attached? Excel Worksheet Functions 0 January 25th 05 10:43 AM


All times are GMT +1. The time now is 12:39 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"