#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 48
Default Using MATCH

I am getting closer I think. Here is an example:
=MATCH(N1255,'[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR ha ANALYSIS'!$N
$8:$N$3000)
This brings the cell number of the match which in this case is row
1253 from the N column from my other spreadsheet.
What can I add to return the cell value from column AT1253, instead of
the row number of the match?
Column AT is 32 columns away from column N.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Using MATCH

What can I add to return the cell value from column AT1253,
instead of the row number of the match?


Just bolt on an INDEX part (indexed on col AT) to use the MATCH's return

Untested, but this should work for you:
=index('[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR ha
ANALYSIS'!$AT$8:$AT$3000,MATCH(N1255,'[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR
ha ANALYSIS'!$N$8:$N$3000))

--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"rhhince" wrote in message
...
I am getting closer I think. Here is an example:
=MATCH(N1255,'[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR ha ANALYSIS'!$N
$8:$N$3000)
This brings the cell number of the match which in this case is row
1253 from the N column from my other spreadsheet.
What can I add to return the cell value from column AT1253, instead of
the row number of the match?
Column AT is 32 columns away from column N.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Using MATCH

I did of course, forget the path.<bg


--
Regards,

RD

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


"Max" wrote in message
...
What can I add to return the cell value from column AT1253,
instead of the row number of the match?


Just bolt on an INDEX part (indexed on col AT) to use the MATCH's return

Untested, but this should work for you:
=index('[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR ha
ANALYSIS'!$AT$8:$AT$3000,MATCH(N1255,'[EURUSD_1 hour_Heikin Ashi.xls]1

HOUR
ha ANALYSIS'!$N$8:$N$3000))

--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"rhhince" wrote in message
...
I am getting closer I think. Here is an example:
=MATCH(N1255,'[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR ha ANALYSIS'!$N
$8:$N$3000)
This brings the cell number of the match which in this case is row
1253 from the N column from my other spreadsheet.
What can I add to return the cell value from column AT1253, instead of
the row number of the match?
Column AT is 32 columns away from column N.




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Using MATCH

I did of course, forget the path.<bg
Admittedly a bit puzzling to me, but it does seem from OP's reply that
he wants to extract from col AT in the same sheet as the lookup <g
It was fortunate that you gave the other version, RD
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Using MATCH

I sort of think that (s)he was smart enough to pick up on the omission and
insert it, and just responded to the first suggestion, considering the OP
went so far as to post the column count between fields.
--

Regards,

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





"Max" wrote in message
...
I did of course, forget the path.<bg

Admittedly a bit puzzling to me, but it does seem from OP's reply that
he wants to extract from col AT in the same sheet as the lookup <g
It was fortunate that you gave the other version, RD
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Using MATCH

You're right. The OP did good.
He clarified in a private email to me
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"RagDyeR" wrote in message
...
I sort of think that (s)he was smart enough to pick up on the omission and
insert it, and just responded to the first suggestion, considering the OP
went so far as to post the column count between fields.
--

Regards,

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


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Using MATCH

Try this:

=Index(AT8:AT3000,MATCH(N1255,'[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR ha
ANALYSIS'!$N
$8:$N$3000))

--
HTH,

RD

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


"rhhince" wrote in message
...
I am getting closer I think. Here is an example:
=MATCH(N1255,'[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR ha ANALYSIS'!$N
$8:$N$3000)
This brings the cell number of the match which in this case is row
1253 from the N column from my other spreadsheet.
What can I add to return the cell value from column AT1253, instead of
the row number of the match?
Column AT is 32 columns away from column N.


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 48
Default Using MATCH

On Dec 30, 1:13*am, "Ragdyer" wrote:
Try this:

=Index(AT8:AT3000,MATCH(N1255,'[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR ha
ANALYSIS'!$N $8:$N$3000))

--
HTH,

RD

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

"rhhince" wrote in message

...



I am getting closer I think. Here is an example:
=MATCH(N1255,'[EURUSD_1 hour_Heikin Ashi.xls]1 HOUR ha ANALYSIS'!$N
$8:$N$3000)
This brings the cell number of the match which in this case is row
1253 from the N column from my other spreadsheet.
What can I add to return the cell value from column AT1253, instead of
the row number of the match?
Column AT is 32 columns away from column N.- Hide quoted text -


- Show quoted text -


Thanks! That worked great, even better than expected. Sure can learn
lots from these groups.

Regards,

RH
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
MATCH Multiple Criteria & Return Previous / Penultimate Match Sam via OfficeKB.com Excel Worksheet Functions 27 October 6th 07 01:39 AM
index match array function-returning only first match, need last. Julie Olsen Excel Worksheet Functions 3 December 29th 06 12:50 AM
Lookup? Match? pulling rows from one spreadsheet to match a text f cjax Excel Worksheet Functions 3 July 21st 06 02:51 PM
Any way for 2 column vlookups. i.e match last name then match firs CraigS Excel Worksheet Functions 5 March 7th 06 12:30 AM
How do I display more than one match in a Index/Match formula? Trish Excel Worksheet Functions 0 September 26th 05 10:21 PM


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