si quieres reproducir formulas y otros contenidos de manera automatica, tendrás que usar macros.
algo asi en la hoja
Código vb:
Ver originalPrivate Sub Worksheet_SelectionChange(ByVal Target As Range)
c = ActiveCell.Row
f = ActiveCell.Column
If f = 1 Then
If Cells(c, 2) = "" And c <> 1 Then
Cells(c, 2).Interior.ColorIndex = 6
Cells(c, 2).Interior.Pattern = xlSolid
Cells(c, 3).Interior.ColorIndex = 6
Cells(c, 3).Interior.Pattern = xlSolid
Cells(c, 1) = "Fila: " & c
Cells(c, 4) = "=SUM(RC[-2]:RC[-1])"
End If
End If
End Sub
si quieres te envio un ejemplo
salu2