Here is my formula, it works perfectly except it looks from the top of C to the bottom of C. I want it to look through C3 to the end of C. Is this possible?
=IFERROR(INDEX('Jobs List'!$C:$C,MATCH(ROWS(AG$12:AG12),'Jobs List'!$R:$R,0)),IFERROR(INDEX(K$8:K$11,MATCH(ROWS(C$7:C7),$M$8:$M$11,0)),""))
In your original formula, you might replace
$C:$Cwith something likeOFFSET($C$3,0,0,ROWS($C:$C)-ROW($C$3)+1).Or, in Excel 2007 or 2010, you might consider using a data table with structured references. So, if your data table is named Your_Table and column C is labeled “Your Column”, you could just use
Your_Table[Your Column]to refer to the “used” part of column C.