引用另一个单元格中的公式,而不是值

问题描述 投票:0回答:1

有谁知道我该怎么做:

“模板表”中的单元格C4有一个公式。 我希望“复制表”中的单元格 C10 引用 C4 中的公式,而不是其值。 当我更改 C4 中的公式时,我希望 C10 中的公式与 C4 相同。

enter image description here

excel excel-formula formula
1个回答
0
投票

你可以用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
© www.soinside.com 2019 - 2024. All rights reserved.