A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Determining the column associated with the ActiveCell would require a VBA macro. Perhaps something like,
Sub MyListWhereIwantIt()
ActiveCell.Resize(29, 1).FormulaArray = _
"=IF(COUNTIF(V:V,$BT$7)< ROWS($BU$7:BU7), """"," & _
"INDEX(C:C,SMALL( IF($V$7:$V$34=$BT$7,ROW($V$7:$V$34)),ROW(C1))))"
End Sub
It wasn't clear whether you wanted that formula entered into an array of cells or as an array formula in a single cell then filled down. I suspect the latter due to the use of ROWS() rather than ROW(). Could you provide specifics on what the formula is intended to accomplish?