Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Indirect function in Index/Match Array

I have the following formula working correctly, but I also need to find the
next instances of the occurance and I'm not sure where the INDIRECT part of
the formula should go. I couldn't tell from the other posts similar to this
what I need to do in my particular situation. Can anyone help? Thanks!

=INDEX('Master Com Plan'!G15:G44,MATCH(1,('Master Com Plan'!A15:A44="SDS
PM")*('Master Com Plan'!H15:H44="SDS Leads")*('Master Com Plan'!Q15:Q44=7),0))
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,420
Default Indirect function in Index/Match Array

Try this array formula

=IF(ISERROR(SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))),"",
INDEX($G$15:$G$44,SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))-ROW($G$15)+1))

--
__________________________________
HTH

Bob

"hoosier41" wrote in message
...
I have the following formula working correctly, but I also need to find the
next instances of the occurance and I'm not sure where the INDIRECT part
of
the formula should go. I couldn't tell from the other posts similar to
this
what I need to do in my particular situation. Can anyone help? Thanks!

=INDEX('Master Com Plan'!G15:G44,MATCH(1,('Master Com Plan'!A15:A44="SDS
PM")*('Master Com Plan'!H15:H44="SDS Leads")*('Master Com
Plan'!Q15:Q44=7),0))



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Indirect function in Index/Match Array

Thanks Bob, I think that starts me on the right path, but it's not returning
any value. I'm not getting an error or anything, just a blank cell. I'm
wondering about the row references to $A1. My A1 has the title of the
worksheet, but no values. Do I need something different here for the formula
to work?

"Bob Phillips" wrote:

Try this array formula

=IF(ISERROR(SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))),"",
INDEX($G$15:$G$44,SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))-ROW($G$15)+1))

--
__________________________________
HTH

Bob

"hoosier41" wrote in message
...
I have the following formula working correctly, but I also need to find the
next instances of the occurance and I'm not sure where the INDIRECT part
of
the formula should go. I couldn't tell from the other posts similar to
this
what I need to do in my particular situation. Can anyone help? Thanks!

=INDEX('Master Com Plan'!G15:G44,MATCH(1,('Master Com Plan'!A15:A44="SDS
PM")*('Master Com Plan'!H15:H44="SDS Leads")*('Master Com
Plan'!Q15:Q44=7),0))




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,420
Default Indirect function in Index/Match Array

The A1 is just a row number, it is referring explicitly to the cell data.

Did you array enter it?

--
__________________________________
HTH

Bob

"hoosier41" wrote in message
...
Thanks Bob, I think that starts me on the right path, but it's not
returning
any value. I'm not getting an error or anything, just a blank cell. I'm
wondering about the row references to $A1. My A1 has the title of the
worksheet, but no values. Do I need something different here for the
formula
to work?

"Bob Phillips" wrote:

Try this array formula

=IF(ISERROR(SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))),"",
INDEX($G$15:$G$44,SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))-ROW($G$15)+1))

--
__________________________________
HTH

Bob

"hoosier41" wrote in message
...
I have the following formula working correctly, but I also need to find
the
next instances of the occurance and I'm not sure where the INDIRECT
part
of
the formula should go. I couldn't tell from the other posts similar to
this
what I need to do in my particular situation. Can anyone help?
Thanks!

=INDEX('Master Com Plan'!G15:G44,MATCH(1,('Master Com
Plan'!A15:A44="SDS
PM")*('Master Com Plan'!H15:H44="SDS Leads")*('Master Com
Plan'!Q15:Q44=7),0))






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Indirect function in Index/Match Array

Yes, I entered it as an array and I should have two more instances that match
the criteria. It's not giving me an error like you get if you don't enter
the array.

I'm checking this criteria and pulling it from another worksheet in the same
workbook, do I need to reference that sheet name instead of just the cell
number, like $A$15? Thanks for all your help!

"Bob Phillips" wrote:

The A1 is just a row number, it is referring explicitly to the cell data.

Did you array enter it?

--
__________________________________
HTH

Bob

"hoosier41" wrote in message
...
Thanks Bob, I think that starts me on the right path, but it's not
returning
any value. I'm not getting an error or anything, just a blank cell. I'm
wondering about the row references to $A1. My A1 has the title of the
worksheet, but no values. Do I need something different here for the
formula
to work?

"Bob Phillips" wrote:

Try this array formula

=IF(ISERROR(SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))),"",
INDEX($G$15:$G$44,SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))-ROW($G$15)+1))

--
__________________________________
HTH

Bob

"hoosier41" wrote in message
...
I have the following formula working correctly, but I also need to find
the
next instances of the occurance and I'm not sure where the INDIRECT
part
of
the formula should go. I couldn't tell from the other posts similar to
this
what I need to do in my particular situation. Can anyone help?
Thanks!

=INDEX('Master Com Plan'!G15:G44,MATCH(1,('Master Com
Plan'!A15:A44="SDS
PM")*('Master Com Plan'!H15:H44="SDS Leads")*('Master Com
Plan'!Q15:Q44=7),0))








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,420
Default Indirect function in Index/Match Array

You would need to use the sheet name wherever applicable yes. Either the
INDEX, or the conditions.

--
__________________________________
HTH

Bob

"hoosier41" wrote in message
...
Yes, I entered it as an array and I should have two more instances that
match
the criteria. It's not giving me an error like you get if you don't enter
the array.

I'm checking this criteria and pulling it from another worksheet in the
same
workbook, do I need to reference that sheet name instead of just the cell
number, like $A$15? Thanks for all your help!

"Bob Phillips" wrote:

The A1 is just a row number, it is referring explicitly to the cell data.

Did you array enter it?

--
__________________________________
HTH

Bob

"hoosier41" wrote in message
...
Thanks Bob, I think that starts me on the right path, but it's not
returning
any value. I'm not getting an error or anything, just a blank cell.
I'm
wondering about the row references to $A1. My A1 has the title of the
worksheet, but no values. Do I need something different here for the
formula
to work?

"Bob Phillips" wrote:

Try this array formula

=IF(ISERROR(SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))),"",
INDEX($G$15:$G$44,SMALL(IF(($A$15:$A$44="SDS PM")*($H$15:$H$44="SDS
Leads")*($Q$15:$Q$44=7),ROW($A$15:$A$44),""),ROW($ A1))-ROW($G$15)+1))

--
__________________________________
HTH

Bob

"hoosier41" wrote in message
...
I have the following formula working correctly, but I also need to
find
the
next instances of the occurance and I'm not sure where the INDIRECT
part
of
the formula should go. I couldn't tell from the other posts similar
to
this
what I need to do in my particular situation. Can anyone help?
Thanks!

=INDEX('Master Com Plan'!G15:G44,MATCH(1,('Master Com
Plan'!A15:A44="SDS
PM")*('Master Com Plan'!H15:H44="SDS Leads")*('Master Com
Plan'!Q15:Q44=7),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
Match, Index, Indirect ? PCLIVE Excel Worksheet Functions 1 April 6th 07 06:02 PM
Array formula with index + match Sena Excel Worksheet Functions 5 April 1st 07 07:06 AM
Help with an Index Match Array petes_girl via OfficeKB.com Excel Worksheet Functions 3 January 31st 07 10:44 PM
index match array function-returning only first match, need last. Julie Olsen Excel Worksheet Functions 3 December 29th 06 01:50 AM
Index,Indirect, and Match caldog Excel Worksheet Functions 3 November 11th 06 12:57 AM


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