答案1
我编写了一个快速代码,它可以完成你想要做的事情。
我基本上是检查一个单元格是否包含公式,如果包含,则用该公式替换引用该单元格的所有实例。
一旦它遍历完表格,如果发现任何替换项,它就会再次循环(实际上不确定是否需要这样做,但这样做更容易)。我也不知道这在复杂的电子表格上运行速度有多快。
请注意,它将 $A$1、$A1、A$1 和 A1 视为相同的,它无法确定引用中是否应该有一些冻结单元格。
Sub replace_formulas()
Dim cell_count As Long, flag As Boolean
Do
flag = False
For Each c In ActiveSheet.UsedRange
If c.HasFormula Then
'count number of replacements
cell_count = Application.WorksheetFunction.CountIf(Cells, c.Address) + _
Application.WorksheetFunction.CountIf(Cells, Replace(c.Address, "$", "")) + _
Application.WorksheetFunction.CountIf(Cells, Replace(c.Address, "$", "", 1, 1)) + _
Application.WorksheetFunction.CountIf(Cells, "$" & Replace(c.Address, "$", ""))
'If there is at least one replacement loop through all the cells after this one
If cell_count > 0 Then flag = True
'Replace cell references with and without $ ($A$1,$A1,A$1,A1)
Cells.Replace What:=c.Address, Replacement:="c.formula", LookAt:=xlPart, SearchOrder _
:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
Cells.Replace What:=Replace(c.Address, "$", ""), Replacement:=Right(c.Formula, Len(c.Formula) - 1), LookAt:=xlPart, SearchOrder _
:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
Cells.Replace What:=Replace(c.Address, "$", "", 1, 1), Replacement:=Right(c.Formula, Len(c.Formula) - 1), LookAt:=xlPart, SearchOrder _
:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
Cells.Replace What:="$" & Replace(c.Address, "$", ""), Replacement:=Right(c.Formula, Len(c.Formula) - 1), LookAt:=xlPart, SearchOrder _
:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
End If
Next
Loop While flag = True
End Sub
答案2
您可能必须手动完成,但有一项功能可以帮助您:追踪先例(在 Excel 2013 的“公式”选项卡中)。
这将添加箭头显示您选择的公式的来源,因此如果您在示例中选择了 J 列中的总销售额并单击了跟踪先例,那么它将从 F9 和 L9 绘制到它的箭头。