我有与本主题中所述类似的问题: Show formula of a cell, but values instead of references
但是我需要显示为
公式直接在Excel工作表中。谢谢您提前回答!
答案 0 :(得分:0)
使用@SiddharthRout函数...
第一;将Function
作为模块放入您的工作簿中。在“开发人员”选项卡下,选择Insert_Module
,然后复制并粘贴函数。
第二;将下面的子项保存在“项目”窗口的ThisWorkbook
文件夹中...
Sub ShowFormulValues()
Dim lRow As Long
lRow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Row
Range("B1:B" & lRow).Formula = "=ConvertToValues(A1)"
End Sub
运行ShowFormulValues
,Sid的公式将提供您想要的信息。