Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How to use VLOOKUP to find data on another sheet

Hi

Can anyone advise me on how to use VLOOKUP when the data to be 'looked up'
is on another worksheet in the same workbook. I also need to be able to look
up a series of Lookup values in a given VLOOKUP formula, i.e. I need to write
a single VLOOKUP formula which will search for DU52, DU92 & DU98 in column A
and return the values found in column D on the rows corresponding to the
values foundin column A.

I hope this makes sense, as this is my first question on these forums.

Thanks in advance.

Cheers

MikeyH
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,726
Default How to use VLOOKUP to find data on another sheet

=VLOOKUP(DU52,Sheet2!A:D,4,False)

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
"MIKEYH" wrote in message
...
Hi

Can anyone advise me on how to use VLOOKUP when the data to be 'looked up'
is on another worksheet in the same workbook. I also need to be able to
look
up a series of Lookup values in a given VLOOKUP formula, i.e. I need to
write
a single VLOOKUP formula which will search for DU52, DU92 & DU98 in column
A
and return the values found in column D on the rows corresponding to the
values foundin column A.

I hope this makes sense, as this is my first question on these forums.

Thanks in advance.

Cheers

MikeyH



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How to use VLOOKUP to find data on another sheet

Hi Bob

I must still be missing something as it's returning #N/A

I've written the formula as follows: =VLOOKUP(DU52,VARIANT!A2:H44,4,FALSE)

When I click in the formula bar, 'DU52' is in blue.

Any ideas???


--
Cheers

MikeyH


"Bob Phillips" wrote:

=VLOOKUP(DU52,Sheet2!A:D,4,False)

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
"MIKEYH" wrote in message
...
Hi

Can anyone advise me on how to use VLOOKUP when the data to be 'looked up'
is on another worksheet in the same workbook. I also need to be able to
look
up a series of Lookup values in a given VLOOKUP formula, i.e. I need to
write
a single VLOOKUP formula which will search for DU52, DU92 & DU98 in column
A
and return the values found in column D on the rows corresponding to the
values foundin column A.

I hope this makes sense, as this is my first question on these forums.

Thanks in advance.

Cheers

MikeyH




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,574
Default How to use VLOOKUP to find data on another sheet

XL thinks DU52 refers to the cell DU52.

Dave
--
Brevity is the soul of wit.


"MIKEYH" wrote:

Hi Bob

I must still be missing something as it's returning #N/A

I've written the formula as follows: =VLOOKUP(DU52,VARIANT!A2:H44,4,FALSE)

When I click in the formula bar, 'DU52' is in blue.

Any ideas???


--
Cheers

MikeyH


"Bob Phillips" wrote:

=VLOOKUP(DU52,Sheet2!A:D,4,False)

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
"MIKEYH" wrote in message
...
Hi

Can anyone advise me on how to use VLOOKUP when the data to be 'looked up'
is on another worksheet in the same workbook. I also need to be able to
look
up a series of Lookup values in a given VLOOKUP formula, i.e. I need to
write
a single VLOOKUP formula which will search for DU52, DU92 & DU98 in column
A
and return the values found in column D on the rows corresponding to the
values foundin column A.

I hope this makes sense, as this is my first question on these forums.

Thanks in advance.

Cheers

MikeyH




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How to use VLOOKUP to find data on another sheet

Thanks Dave, that makes sense. How do I convince Excel that DU52 is not a
cell reference, but merely a data value?
--
Cheers

MikeyH


"Dave F" wrote:

XL thinks DU52 refers to the cell DU52.

Dave
--
Brevity is the soul of wit.


"MIKEYH" wrote:

Hi Bob

I must still be missing something as it's returning #N/A

I've written the formula as follows: =VLOOKUP(DU52,VARIANT!A2:H44,4,FALSE)

When I click in the formula bar, 'DU52' is in blue.

Any ideas???


--
Cheers

MikeyH


"Bob Phillips" wrote:

=VLOOKUP(DU52,Sheet2!A:D,4,False)

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
"MIKEYH" wrote in message
...
Hi

Can anyone advise me on how to use VLOOKUP when the data to be 'looked up'
is on another worksheet in the same workbook. I also need to be able to
look
up a series of Lookup values in a given VLOOKUP formula, i.e. I need to
write
a single VLOOKUP formula which will search for DU52, DU92 & DU98 in column
A
and return the values found in column D on the rows corresponding to the
values foundin column A.

I hope this makes sense, as this is my first question on these forums.

Thanks in advance.

Cheers

MikeyH





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,574
Default How to use VLOOKUP to find data on another sheet

Put double quotes around it: "DU52" --that signifies that it is a text string.

Dave
--
Brevity is the soul of wit.


"MIKEYH" wrote:

Thanks Dave, that makes sense. How do I convince Excel that DU52 is not a
cell reference, but merely a data value?
--
Cheers

MikeyH


"Dave F" wrote:

XL thinks DU52 refers to the cell DU52.

Dave
--
Brevity is the soul of wit.


"MIKEYH" wrote:

Hi Bob

I must still be missing something as it's returning #N/A

I've written the formula as follows: =VLOOKUP(DU52,VARIANT!A2:H44,4,FALSE)

When I click in the formula bar, 'DU52' is in blue.

Any ideas???


--
Cheers

MikeyH


"Bob Phillips" wrote:

=VLOOKUP(DU52,Sheet2!A:D,4,False)

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
"MIKEYH" wrote in message
...
Hi

Can anyone advise me on how to use VLOOKUP when the data to be 'looked up'
is on another worksheet in the same workbook. I also need to be able to
look
up a series of Lookup values in a given VLOOKUP formula, i.e. I need to
write
a single VLOOKUP formula which will search for DU52, DU92 & DU98 in column
A
and return the values found in column D on the rows corresponding to the
values foundin column A.

I hope this makes sense, as this is my first question on these forums.

Thanks in advance.

Cheers

MikeyH



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How to use VLOOKUP to find data on another sheet

Thanks to Dave, that worked a treat.

I now have to write a formula to search for multiple lookup values and
return the sum of the values found in column D .......... ??????
--
Cheers

MikeyH


"Dave F" wrote:

Put double quotes around it: "DU52" --that signifies that it is a text string.

Dave
--
Brevity is the soul of wit.


"MIKEYH" wrote:

Thanks Dave, that makes sense. How do I convince Excel that DU52 is not a
cell reference, but merely a data value?
--
Cheers

MikeyH


"Dave F" wrote:

XL thinks DU52 refers to the cell DU52.

Dave
--
Brevity is the soul of wit.


"MIKEYH" wrote:

Hi Bob

I must still be missing something as it's returning #N/A

I've written the formula as follows: =VLOOKUP(DU52,VARIANT!A2:H44,4,FALSE)

When I click in the formula bar, 'DU52' is in blue.

Any ideas???


--
Cheers

MikeyH


"Bob Phillips" wrote:

=VLOOKUP(DU52,Sheet2!A:D,4,False)

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
"MIKEYH" wrote in message
...
Hi

Can anyone advise me on how to use VLOOKUP when the data to be 'looked up'
is on another worksheet in the same workbook. I also need to be able to
look
up a series of Lookup values in a given VLOOKUP formula, i.e. I need to
write
a single VLOOKUP formula which will search for DU52, DU92 & DU98 in column
A
and return the values found in column D on the rows corresponding to the
values foundin column A.

I hope this makes sense, as this is my first question on these forums.

Thanks in advance.

Cheers

MikeyH



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
Inputting data to one worksheet for it effect another daedalus1 Excel Discussion (Misc queries) 1 June 25th 06 04:39 PM
Help PLEASE! Not sure what answer is: Match? Index? Other? baz Excel Worksheet Functions 7 September 3rd 05 03:47 PM
find data from other sheet Jaladino Excel Worksheet Functions 1 February 24th 05 05:18 AM
Multiple worksheet queries liam Excel Worksheet Functions 3 February 16th 05 06:52 PM
vlookup with data on more than one sheet Greegan Excel Worksheet Functions 1 December 21st 04 03:34 AM


All times are GMT +1. The time now is 10:27 AM.

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

About Us

"It's about Microsoft Excel"