OK, I'm a noob so, first up, I want to say what a great site this is, been using it for ages and it never fails to solve my problems.....
... until now
I have a 'challenge' and it looked like the answer was a flavour of the old
=INDEX(...,MATCH(1,........))
lookup variant but I just can't get it to work
Challenge
This is a membership database for my local sports club, with one large worksheet 'Membership Details', containing all the pertinent info;
- column A holds an alphabetical list of surnames
- column C holds text defining the type of membership ('SeniorM', 'JuniorF', etc....)
- column AK holds a 'y' if they've paid their annual membership and an 'n' if not.
I want to, on a separate worksheet, list all those members with a particular membership type, that have paid their subs, in alphabetical surname sequence.
I thought
{=INDEX('Membership Details'!$A$2:$A$391,MATCH(1,('Membership Details'!$AK$2:$AK$391="y")*('Membership Details'!$C$2:$C$391="SeniorM"),0))}
would work but, alas, this seems to return different subsets of the names, in odd sequences, not limited to 'SeniorM' members....
Can anyone point out the glaring error that I'm making, please?
... until now
I have a 'challenge' and it looked like the answer was a flavour of the old
=INDEX(...,MATCH(1,........))
lookup variant but I just can't get it to work
Challenge
This is a membership database for my local sports club, with one large worksheet 'Membership Details', containing all the pertinent info;
- column A holds an alphabetical list of surnames
- column C holds text defining the type of membership ('SeniorM', 'JuniorF', etc....)
- column AK holds a 'y' if they've paid their annual membership and an 'n' if not.
I want to, on a separate worksheet, list all those members with a particular membership type, that have paid their subs, in alphabetical surname sequence.
I thought
{=INDEX('Membership Details'!$A$2:$A$391,MATCH(1,('Membership Details'!$AK$2:$AK$391="y")*('Membership Details'!$C$2:$C$391="SeniorM"),0))}
would work but, alas, this seems to return different subsets of the names, in odd sequences, not limited to 'SeniorM' members....
Can anyone point out the glaring error that I'm making, please?