Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Hlookup a value in a column and display the data 12 rows below.

Hello,

I have a lot of data from multiple queries that can only be dumped into 1
colum and spans almost 1000 rows. To make a summary page that makes this data
more user friendly I have an hlookup query the command that was run for a
specific query and it needs to display the result 12 lines down. Each query
is different in length but it always shows the result I'm looking for 12 rows
down.

some sort of an example of the code would that I'm trying to make is:

=HLOOKUP('worksheet data'!A2,'PSLINK Raw Data'!A1:A1000,12,FALSE)

But the ,12,FALSE would need to give the result of 12 rows below the value
from 'worksheet data'!A2 and the next one would be A3, and A4 and so on.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Hlookup a value in a column and display the data 12 rows below.

If I understand what you're asking, see if this works for you:

=INDEX('PSLINK Raw Data'!A1:A1000,MATCH('worksheet data'!A2,'PSLINK Raw
Data'!A1:A1000,0)+12)
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"VZW Justin" wrote in message
...
Hello,

I have a lot of data from multiple queries that can only be dumped into 1
colum and spans almost 1000 rows. To make a summary page that makes this
data
more user friendly I have an hlookup query the command that was run for a
specific query and it needs to display the result 12 lines down. Each
query
is different in length but it always shows the result I'm looking for 12
rows
down.

some sort of an example of the code would that I'm trying to make is:

=HLOOKUP('worksheet data'!A2,'PSLINK Raw Data'!A1:A1000,12,FALSE)

But the ,12,FALSE would need to give the result of 12 rows below the value
from 'worksheet data'!A2 and the next one would be A3, and A4 and so on.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Hlookup a value in a column and display the data 12 rows below

AWESOME!!! Thank you so Much! That worked great.

Would you also be able to advise how to use the wild card in the lookup?

Meaning the text I'm using on the look up is this:

tst:pslnk,vpath=81-71,enh,DELAY; PF

and it may also appear like this:

< tst:pslnk,vpath=81-71,enh,DELAY; PF


Can I make the command you sent me which works perfectly lookup just
vpath=81-71?




"RagDyer" wrote:

If I understand what you're asking, see if this works for you:

=INDEX('PSLINK Raw Data'!A1:A1000,MATCH('worksheet data'!A2,'PSLINK Raw
Data'!A1:A1000,0)+12)
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"VZW Justin" wrote in message
...
Hello,

I have a lot of data from multiple queries that can only be dumped into 1
colum and spans almost 1000 rows. To make a summary page that makes this
data
more user friendly I have an hlookup query the command that was run for a
specific query and it needs to display the result 12 lines down. Each
query
is different in length but it always shows the result I'm looking for 12
rows
down.

some sort of an example of the code would that I'm trying to make is:

=HLOOKUP('worksheet data'!A2,'PSLINK Raw Data'!A1:A1000,12,FALSE)

But the ,12,FALSE would need to give the result of 12 rows below the value
from 'worksheet data'!A2 and the next one would be A3, and A4 and so on.




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Hlookup a value in a column and display the data 12 rows below

Try this:

=INDEX('PSLINK Raw Data'!A1:A1000,MATCH("*"&'worksheet data'!A2&"*",'PSLINK
Raw Data'!A1:A1000,0)+12)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"VZW Justin" wrote in message
...
AWESOME!!! Thank you so Much! That worked great.

Would you also be able to advise how to use the wild card in the lookup?

Meaning the text I'm using on the look up is this:

tst:pslnk,vpath=81-71,enh,DELAY; PF

and it may also appear like this:

< tst:pslnk,vpath=81-71,enh,DELAY; PF


Can I make the command you sent me which works perfectly lookup just
vpath=81-71?




"RagDyer" wrote:

If I understand what you're asking, see if this works for you:

=INDEX('PSLINK Raw Data'!A1:A1000,MATCH('worksheet data'!A2,'PSLINK Raw
Data'!A1:A1000,0)+12)
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"VZW Justin" wrote in message
...
Hello,

I have a lot of data from multiple queries that can only be dumped into
1
colum and spans almost 1000 rows. To make a summary page that makes
this
data
more user friendly I have an hlookup query the command that was run for
a
specific query and it needs to display the result 12 lines down. Each
query
is different in length but it always shows the result I'm looking for
12
rows
down.

some sort of an example of the code would that I'm trying to make is:

=HLOOKUP('worksheet data'!A2,'PSLINK Raw Data'!A1:A1000,12,FALSE)

But the ,12,FALSE would need to give the result of 12 rows below the
value
from 'worksheet data'!A2 and the next one would be A3, and A4 and so
on.






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
Trying to HLOOKUP a value from another sheet and display all the d gktan Excel Worksheet Functions 4 May 8th 09 06:34 AM
how to display rows of data in a single column IUM Excel Discussion (Misc queries) 6 December 30th 08 07:29 PM
How do I hlookup a text document object and then display it? excel-novice Excel Worksheet Functions 0 January 23rd 08 12:04 AM
Based on a condition in one column, search for a year in another column, and display data from another column in the same row look [email protected] Excel Discussion (Misc queries) 1 December 27th 06 05:47 PM
how do I display data in rows? Sam Excel Discussion (Misc queries) 5 July 25th 06 09:09 AM


All times are GMT +1. The time now is 09:23 AM.

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"