Outro método está abaixo, usei meus próprios valores para testar:
Nota: Você precisará substituir minhas vírgulas por ponto e vírgula pelo seu sistema
Usando a fórmula de intervalo nomeado e a configuração abaixo iniciará o intervalo nomeado do ano selecionado e continuará até o final dos dados (ou C1000 , se isso ocorrer primeiro)
=OFFSET(Sheet1!$C$1,MATCH(Sheet1!$E$1,Sheet1!$A:$A,0)-1,,COUNTA(INDIRECT("C"&MATCH(Sheet1!$E$1,Sheet1!$A:$A,0)&":C1000")))
Observe o C1000
no final da fórmula - você poderia fazer com que C15000
ou similar se tivesse mais dados.
O método é o seguinte:
OFFSET(
Start: C1
Rows: Find year using MATCH() formula and move down this many cells -1
Columns: N/A
Height: INDIRECT effectively creates the range between Cx, where x is the row of the
selected year and C1000. Then using COUNTA over this range gives the required
height of the range
Width: N/A
)