Using Google Sheets, I'm currently using this formula to find the first cell in a specified range that fulfills the ISNUMBER() condition:
=INDEX(FILTER(AC!D9:K9,ISNUMBER(AC!D9:K9)), 1)
This is working fine. However I need to apply this to an entire column, so one alternative would be dragging it down so subsequent cells contain a similar formula, for example the cell below this one would contain:
=INDEX(FILTER(AC!D10:K10,ISNUMBER(AC!D10:K10)), 1)
And this works too. But I'd like to find a way to make it cleaner and use ArrayFormula to apply it to the entire column, and the default Ctrl + Shfit + Enter formula:
=ArrayFormula(INDEX(FILTER(AC!D9:K9,ISNUMBER(AC!D9:K9)), 1))
Isn't working. Anyone know how I could make it work?

INDEX? - TheMaster