Filter a list, source list is in 2 columns

coinbank

New Member
Joined
Feb 13, 2020
Messages
1
Office Version
  1. 2010
  2. 2007
Platform
  1. Windows
I am running a college football pool and I want to get a list of all of the teams that are playing in the games this year. I want to return the names of the teams in column K & M, in one column (separate schedule) if Column C is "2022". Is there a way to use the filter to pull from both columns?

So on my work computer it won't allow me to install the Mini-Sheet however here is the sheet:

CDEFGHIJKLM
YearPlayoff/ ChampBowlLocationDateTimeNetworkFave RankFavoriteDog RankUnderdog
2022BahamasNassau, Bahamas12/16/202211:30 AMESPNUABMiami (Ohio)
2022CureOrlando, FL12/16/20223:00 PMESPN24Troy25UTSA
2022FenwayBoston, MA12/17/202211:00 AMESPNLouisvilleCincinnati
2022CelebrationAtlanta, GA12/17/202212:00 PMABCJackson StateNC Central
2022New MexicoAlbuquerque, NM12/17/20222:15 PMESPNSMUBYU
2022Jimmy KimmelLos Angeles, CA12/17/20223:30 PMABCFresno StateWashington State
2022Lending TreeMobile, AL12/17/20225:45 PMESPNSouthern MissRice
2022Las VegasLas Vegas, NV12/17/20227:30 PMESPN14Oregon StateFlorida
2022FriscoFrisco, TX12/17/20229:15 PMESPNBoise StateNorth Texas
2022Myrtle BeachConway, SC12/19/20222:30 PMESPNMarshallConnecticut
2022Famous Idaho PotatoBoise, ID12/20/20223:30 PMESPNSan Jose StateEastern Michigan
2022Boca RatonBoca Raton, FL12/20/20227:30 PMESPNToledoLiberty
2022New OrleansNew Orleans, LA12/21/20229:00 PMESPNSouth AlabamaWestern Kentucky
2022Armed ForcesFort Worth, TX12/22/20227:30 PMESPNBaylorAir Force
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Hi, see the linked files (with 5 auxiliary columns) for a possible solution for Office2007 and Office2010...

The formulas used in the table:
A2: =INDEX(Source!C:C,ROW())
B2: =INDEX(Source!K:K,ROW())
C2: =INDEX(Source!M:M,ROW())
D2: =IF(A2=2022,1,0)
E2: =IF(A2=2022,SUM(D$2:D2)+1,0)
G1: =MAX(E:E)
I2: =IF(ROW()>G$1,"",INDEX(B:B,MATCH(ROW(),E:E,0))&" & "&INDEX(C:C,MATCH(ROW(),E:E,0)))

CollegeFootball.xlsx
CollegeFootball2.xlsx
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,433
Members
448,897
Latest member
ksjohnson1970

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top