You need to go back to your Defined Name "Date" Since the other two names are dependent on that one, that's the only one you need to change. This formula
=OFFSET(Sheet1!$A$2,MAX(0,COUNTA(Sheet1!$A$2:$A$500)-12),0,12)
will offset the rows by whatever is larger 0 or COUNTA(A2:A500)-12. It also automatically makes your range height (rows) = 12. Compare it to the original formula.
If you don't want the height to always be 12, you could use this formula instead
=OFFSET(Sheet1!$A$2,MAX(0,COUNTA(Sheet1!$A$2:$A$500)-12),0,MIN(12,COUNTA(Sheet1!$A$2:$A$500)))
Let me know if you need help working through the logic.
Bookmarks