Hi Debbie and Chuck
Chuck's suggestion re VBA code would be my preferred option to create the
kind of report you seem to want. It will carry out the filtering, copying
and pasting very quickly (less than a second for this sample file).
Sample code (for a single workbook containing 3 sheets with data in 4
columns A to D and a 4th sheet for your results) :
Notes:
Sheets("Sheet4").Range("I1:I2") holds the filter criteria - in my sample
case I1 has 'ATRisk' entered (the column header for the other sheets where
your #1 formula is); I2 has '#1' entered.
Sheets("Sheet4").Range("J2") holds a formula ="A"&CountA(A:A)+1 which
tells VBA where the next free row is to paste the data.
The Calculate line is to make sure that this formula refreshes.
If you have dozens of sheets in the same workbook a neater solution than
just repeating the same code with different sheet references would be to put
in a For... Next loop, but repeating the code as below does the trick just
as well...
Sub extractdata()
Sheets("Sheet1").Range("A1

700").AdvancedFilter
Action:=xlFilterInPlace, CriteriaRange:= _
Sheets("Sheet4").Range("I1:I2"), Unique:=False
Sheets("Sheet1").Range("A2

700").SpecialCells(xlCellTypeVisible).Copy
destref = Sheets("Sheet4").Range("J2").Value
Sheets("Sheet4").Range(destref).PasteSpecial xlValues
Sheets("Sheet1").ShowAllData
Calculate
Sheets("Sheet2").Range("A1

700").AdvancedFilter
Action:=xlFilterInPlace, CriteriaRange:= _
Sheets("Sheet4").Range("I1:I2"), Unique:=False
Sheets("Sheet2").Range("A2

700").SpecialCells(xlCellTypeVisible).Copy
destref = Sheets("Sheet4").Range("J2").Value
Sheets("Sheet4").Range(destref).PasteSpecial xlValues
Sheets("Sheet2").ShowAllData
Calculate
Sheets("Sheet3").Range("A1

700").AdvancedFilter
Action:=xlFilterInPlace, CriteriaRange:= _
Sheets("Sheet4").Range("I1:I2"), Unique:=False
Sheets("Sheet3").Range("A2

700").SpecialCells(xlCellTypeVisible).Copy
destref = Sheets("Sheet4").Range("J2").Value
Sheets("Sheet4").Range(destref).PasteSpecial xlValues
Sheets("Sheet3").ShowAllData
Calculate
Sheets("Sheet4").Select
Range("A1").Select
End Sub
Hope this helps. I can email you a sample workbook if it makes it easier...
Best rgds
Chris Lav (UK, up late, work tomorrow...)