Eu tenho um problema e não consigo encontrar uma resposta para ele. Talvez você possa me ajudar.
Na planilha "Intro", tenho uma linha (5), na qual estão as fórmulas:
(i) C5(='Sheet1'!$A$1);
(ii) I5(=OFFSET('Sheet1'!$A$1;17;1;1;));
(iii) In this row also is the number of my tables line, i.e., B5(=1). This number "1" is also a hyperlink to Sheet1.
Eu tenho uma macro que insere automaticamente uma nova linha após a última linha preenchida, ou seja, quando eu tiver preenchido 5 linhas e executado minha macro, insira a linha 6. Eu quero preencher automaticamente essa linha com minhas fórmulas , que descrevi acima.
Mais especificamente, a nova linha deve ser preenchida assim:
Quando a nova linha é 6:
(i) C6(='Sheet2'!$A$1);
(ii) I6(=OFFSET('Sheet2'!$A$1;17;1;1;));
(iii) B6(=2). This number "2" is also a hyperlink to Sheet2.
Quando a nova linha é 7:
(i) C7(='Sheet3'!$A$1);
(ii) I7(=OFFSET('Sheet3'!$A$1;17;1;1;));
(iii) B7(=3). This number "3" is also a hyperlink to Sheet3.
Quando a nova linha é 8:
(i) C8(='Sheet4'!$A$1);
(ii) I8(=OFFSET('Sheet4'!$A$1;17;1;1;));
(iii) B8(=4). This number "4" is also a hyperlink to Sheet4.
Tags microsoft-excel vba