有谁知道我该怎么做:
“模板表”中的单元格C4有一个公式。 我希望“复制表”中的单元格 C10 引用 C4 中的公式,而不是其值。 当我更改 C4 中的公式时,我希望 C10 中的公式与 C4 相同。
你可以用VBA来完成:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
' Check if the cell C4 in the "Template Table" is modified
If Not Intersect(Target, Sh.Range("C4")) Is Nothing Then
' Copy the formula from C4 to C10
Sh.Range("C10").Formula = Sh.Range("C4").Formula
End If
End Sub