Hi ,
Do you want that the text Year 1 , Year 2 ,... should be filled up in cells based on what value is entered in another cell ?
If so , it is certainly possible using a formula.
=IF(ROW(A1) <= value in cell , "Year " & ROW(A1), "")
If your entered value of 6 , 10 ,... is in cell P1 , then the formula will become :
=IF(ROW(A1) <= $P$1, "Year " & ROW(A1), "")
Narayan