Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 144
Default more re index and match

Was sent this formula by Double Z.. one issue with it... on my sheet 2 my
array is actually A1:N57
to match to the drop down list in E 11 on sheet 2( I am using info From
A1:A57 store names sheet 2) then indexing same to match the date H3 sheet1
so that the info for Route # needed in I 13( Sunday to Saturday stored in
H1:N57 on sheet two)will populate... problem is formula will not correctly
match the selections after I get to entering Thursday in H:3 please help some
more?

=index(sheet2!$A$1:$D$50,match(sheet1!$E$11,index( sheet2!$A$1:$D$50,,1),0),match(sheet1!$H$3,index(s heet2!$A$1:$D$50,1,),0))


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default more re index and match

Kathy,

If Thursday is in cell E1, it won't be found since your match is only
looking through column D. Try this instead:

=index(sheet2!$A$1:$N$50,match(sheet1!$E$11,index( sheet2!$A$1:$N$50,,1),0),match(sheet1!$H$3,index(s heet2!$A$1:$N$50,1,),0))

HTH,
Bernie
MS Excel MVP

"kathy" wrote in message
...
Was sent this formula by Double Z.. one issue with it... on my sheet 2 my
array is actually A1:N57
to match to the drop down list in E 11 on sheet 2( I am using info From
A1:A57 store names sheet 2) then indexing same to match the date H3
sheet1
so that the info for Route # needed in I 13( Sunday to Saturday stored in
H1:N57 on sheet two)will populate... problem is formula will not correctly
match the selections after I get to entering Thursday in H:3 please help
some
more?

=index(sheet2!$A$1:$D$50,match(sheet1!$E$11,index( sheet2!$A$1:$D$50,,1),0),match(sheet1!$H$3,index(s heet2!$A$1:$D$50,1,),0))




  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default more re index and match

Try this:

=INDEX(Sheet2!$A$1:$N$57,MATCH(Sheet1!$E$11,Sheet2 !$A$1:$A$57,0),MATCH(Sheet1!$H$3,Sheet2!$A$1:$N$1, 0))

--
Biff
Microsoft Excel MVP


"kathy" wrote in message
...
Was sent this formula by Double Z.. one issue with it... on my sheet 2 my
array is actually A1:N57
to match to the drop down list in E 11 on sheet 2( I am using info From
A1:A57 store names sheet 2) then indexing same to match the date H3
sheet1
so that the info for Route # needed in I 13( Sunday to Saturday stored in
H1:N57 on sheet two)will populate... problem is formula will not correctly
match the selections after I get to entering Thursday in H:3 please help
some
more?

=index(sheet2!$A$1:$D$50,match(sheet1!$E$11,index( sheet2!$A$1:$D$50,,1),0),match(sheet1!$H$3,index(s heet2!$A$1:$D$50,1,),0))




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 144
Default more re index and match

yes this one did finally work.. one more query for you.. H3 is the day of the
week.. eg sunday thru Saturday I'd like to enter the actual date in the cell
next I 3 then have the day of the week pop up in H3 but that spoils the
match formula.. any ideas or advice on how I could accomplish this?

"T. Valko" wrote:

Try this:

=INDEX(Sheet2!$A$1:$N$57,MATCH(Sheet1!$E$11,Sheet2 !$A$1:$A$57,0),MATCH(Sheet1!$H$3,Sheet2!$A$1:$N$1, 0))

--
Biff
Microsoft Excel MVP


"kathy" wrote in message
...
Was sent this formula by Double Z.. one issue with it... on my sheet 2 my
array is actually A1:N57
to match to the drop down list in E 11 on sheet 2( I am using info From
A1:A57 store names sheet 2) then indexing same to match the date H3
sheet1
so that the info for Route # needed in I 13( Sunday to Saturday stored in
H1:N57 on sheet two)will populate... problem is formula will not correctly
match the selections after I get to entering Thursday in H:3 please help
some
more?

=index(sheet2!$A$1:$D$50,match(sheet1!$E$11,index( sheet2!$A$1:$D$50,,1),0),match(sheet1!$H$3,index(s heet2!$A$1:$D$50,1,),0))





  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default more re index and match

Try this:

I3 = some date like 10/27/2008

Enter this formula in H3:

=TEXT(I3,"dddd")

That will return the long weekday name like Monday. If you want the short
weekday name like Mon just remove one of the d's.

--
Biff
Microsoft Excel MVP


"kathy" wrote in message
...
yes this one did finally work.. one more query for you.. H3 is the day of
the
week.. eg sunday thru Saturday I'd like to enter the actual date in the
cell
next I 3 then have the day of the week pop up in H3 but that spoils the
match formula.. any ideas or advice on how I could accomplish this?

"T. Valko" wrote:

Try this:

=INDEX(Sheet2!$A$1:$N$57,MATCH(Sheet1!$E$11,Sheet2 !$A$1:$A$57,0),MATCH(Sheet1!$H$3,Sheet2!$A$1:$N$1, 0))

--
Biff
Microsoft Excel MVP


"kathy" wrote in message
...
Was sent this formula by Double Z.. one issue with it... on my sheet 2
my
array is actually A1:N57
to match to the drop down list in E 11 on sheet 2( I am using info From
A1:A57 store names sheet 2) then indexing same to match the date H3
sheet1
so that the info for Route # needed in I 13( Sunday to Saturday stored
in
H1:N57 on sheet two)will populate... problem is formula will not
correctly
match the selections after I get to entering Thursday in H:3 please
help
some
more?

=index(sheet2!$A$1:$D$50,match(sheet1!$E$11,index( sheet2!$A$1:$D$50,,1),0),match(sheet1!$H$3,index(s heet2!$A$1:$D$50,1,),0))









  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 144
Default more re index and match

SWEET!!!! your help is so much appreciated... This will eliminate probably
half hour of data entry every monday.. Thank you!

"T. Valko" wrote:

Try this:

I3 = some date like 10/27/2008

Enter this formula in H3:

=TEXT(I3,"dddd")

That will return the long weekday name like Monday. If you want the short
weekday name like Mon just remove one of the d's.

--
Biff
Microsoft Excel MVP


"kathy" wrote in message
...
yes this one did finally work.. one more query for you.. H3 is the day of
the
week.. eg sunday thru Saturday I'd like to enter the actual date in the
cell
next I 3 then have the day of the week pop up in H3 but that spoils the
match formula.. any ideas or advice on how I could accomplish this?

"T. Valko" wrote:

Try this:

=INDEX(Sheet2!$A$1:$N$57,MATCH(Sheet1!$E$11,Sheet2 !$A$1:$A$57,0),MATCH(Sheet1!$H$3,Sheet2!$A$1:$N$1, 0))

--
Biff
Microsoft Excel MVP


"kathy" wrote in message
...
Was sent this formula by Double Z.. one issue with it... on my sheet 2
my
array is actually A1:N57
to match to the drop down list in E 11 on sheet 2( I am using info From
A1:A57 store names sheet 2) then indexing same to match the date H3
sheet1
so that the info for Route # needed in I 13( Sunday to Saturday stored
in
H1:N57 on sheet two)will populate... problem is formula will not
correctly
match the selections after I get to entering Thursday in H:3 please
help
some
more?

=index(sheet2!$A$1:$D$50,match(sheet1!$E$11,index( sheet2!$A$1:$D$50,,1),0),match(sheet1!$H$3,index(s heet2!$A$1:$D$50,1,),0))








  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default more re index and match

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"kathy" wrote in message
...
SWEET!!!! your help is so much appreciated... This will eliminate probably
half hour of data entry every monday.. Thank you!

"T. Valko" wrote:

Try this:

I3 = some date like 10/27/2008

Enter this formula in H3:

=TEXT(I3,"dddd")

That will return the long weekday name like Monday. If you want the short
weekday name like Mon just remove one of the d's.

--
Biff
Microsoft Excel MVP


"kathy" wrote in message
...
yes this one did finally work.. one more query for you.. H3 is the day
of
the
week.. eg sunday thru Saturday I'd like to enter the actual date in the
cell
next I 3 then have the day of the week pop up in H3 but that spoils
the
match formula.. any ideas or advice on how I could accomplish this?

"T. Valko" wrote:

Try this:

=INDEX(Sheet2!$A$1:$N$57,MATCH(Sheet1!$E$11,Sheet2 !$A$1:$A$57,0),MATCH(Sheet1!$H$3,Sheet2!$A$1:$N$1, 0))

--
Biff
Microsoft Excel MVP


"kathy" wrote in message
...
Was sent this formula by Double Z.. one issue with it... on my sheet
2
my
array is actually A1:N57
to match to the drop down list in E 11 on sheet 2( I am using info
From
A1:A57 store names sheet 2) then indexing same to match the date H3
sheet1
so that the info for Route # needed in I 13( Sunday to Saturday
stored
in
H1:N57 on sheet two)will populate... problem is formula will not
correctly
match the selections after I get to entering Thursday in H:3 please
help
some
more?

=index(sheet2!$A$1:$D$50,match(sheet1!$E$11,index( sheet2!$A$1:$D$50,,1),0),match(sheet1!$H$3,index(s heet2!$A$1:$D$50,1,),0))










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
Find Exact Match using INDEX, MATCH DoubleUU Excel Worksheet Functions 3 August 15th 08 02:42 PM
index(match) Wind Uplift Calculations (match four conditions) JMeier Excel Worksheet Functions 8 August 1st 08 01:45 AM
index match array function-returning only first match, need last. Julie Olsen Excel Worksheet Functions 3 December 29th 06 12:50 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
index,match,match on un-sorted data Brisbane Rob Excel Worksheet Functions 3 September 24th 05 10:04 PM


All times are GMT +1. The time now is 05:14 PM.

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"