Create a List using IF(AND from other tabs

SFCChase

Board Regular
Joined
Jun 25, 2013
Messages
107
Office Version
  1. 2016
Platform
  1. Windows
Is it possible to create a list using data of a different tab using an IF(AND formula?

I have 3 tabs. My first tab (Firers) has 4 columns (Rank, Name, Date, Iteration)
My 2nd (27SEP) and 3rd (28SEP) tabs have 3 tables each (Iteration 1, Iteration 2, Iteration 3)
Basically I'm looking for a way to auto-fill the 3 tables on 27SEP and 28SEP by searching the date, iteration columns on my Firers tab. If Date = 27FEB AND Iteration=1, that rank and name get added to table. The same formula will be used for Iterations 2 and 3.

I will have a list of about 250 names on the Firers list.


Thanks in advance
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Is the date on the Firers sheet an actual date, or is it text?
 
Upvote 0
Advanced Filter with the Copy To Other Location option can create the tables, but updating them dynamically would be a problem.
 
Upvote 0
Assuming that 27FEB is a typo & you meant 27SEP, you could use this formula for the 27SEP iteration1 table
=IFERROR(INDEX(Firers!B$2:B$8,AGGREGATE(15,6,(ROW(Firers!B$2:B$8)-ROW(Firers!B$2)+1)/((Firers!$C$2:$C$8=DATEVALUE("27/09/2019"))*(Firers!$D$2:$D$8=1)),ROWS($A$1:$A1))),"")
Filled down & across
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,707
Members
448,981
Latest member
recon11bucks

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