Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Trying to HLOOKUP a value from another sheet and display all the d | Excel Worksheet Functions | |||
how to display rows of data in a single column | Excel Discussion (Misc queries) | |||
How do I hlookup a text document object and then display it? | Excel Worksheet Functions | |||
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 | Excel Discussion (Misc queries) | |||
how do I display data in rows? | Excel Discussion (Misc queries) |