BenElliott
Board Regular
- Joined
- Jul 19, 2012
- Messages
- 144
I'm still working on my several tables for Speakers giving several talks in multiple locations. Some speakers are marked as "Good" and some as "Moderate" in a table column named "Status"
Location is given in cell F1 and Status in cell F2. The count is in cell F3. the folumula for extracting the talk numbers given at a specific location with the speaker rating is as follows:
=IF(ROWS($E$5:E5)>$F$3,"",INDEX(SpeakersTalks[Talk Number],AGGREGATE(15,6,(ROW(SpeakersTalks[Talk Number])-ROW($A$2)+1)/((SpeakersTalks[Location]=$F$1)*(SpeakersTalks[Status]=$F$2)),ROWS(F$5:F5))))
By the way, my count in cell F3 is: {=SUM(--(FREQUENCY(IF((SpeakersTalks[location]=$F$1)*(SpeakersTalks[Status]=$F$2),MATCH(SpeakersTalks[Talk Number],SpeakersTalks[Talk Number],0)),ROW(SpeakersTalks[Talk Number])-ROW($A$2)+1)>0))}
My problem is that several speakers give the same talk number at the same location. I want these duplicates to be ignored but can't see how to ignore them. Any pointers to where I'm going wrong would be appreciated.
Many thanks,
Ben
Location is given in cell F1 and Status in cell F2. The count is in cell F3. the folumula for extracting the talk numbers given at a specific location with the speaker rating is as follows:
=IF(ROWS($E$5:E5)>$F$3,"",INDEX(SpeakersTalks[Talk Number],AGGREGATE(15,6,(ROW(SpeakersTalks[Talk Number])-ROW($A$2)+1)/((SpeakersTalks[Location]=$F$1)*(SpeakersTalks[Status]=$F$2)),ROWS(F$5:F5))))
By the way, my count in cell F3 is: {=SUM(--(FREQUENCY(IF((SpeakersTalks[location]=$F$1)*(SpeakersTalks[Status]=$F$2),MATCH(SpeakersTalks[Talk Number],SpeakersTalks[Talk Number],0)),ROW(SpeakersTalks[Talk Number])-ROW($A$2)+1)>0))}
My problem is that several speakers give the same talk number at the same location. I want these duplicates to be ignored but can't see how to ignore them. Any pointers to where I'm going wrong would be appreciated.
Many thanks,
Ben