我在Excel中使用VBA在表格中的特定单元格中输入公式,但不希望整个列获得此公式。
手动执行时,Excel为我提供了“撤消计算列”的选项,但不是通过代码完成时。
我的代码如下:
Dim url As String
url="https://example.com/myurl"
ThisWorkbook.Worksheets("PO Info").Range("E3").FormulaR1C1 = "=Hyperlink(""" & url & """,""Supplier Portal"")"
非常感谢任何帮助。
答案 0 :(得分:2)
尝试:
Application.AutoCorrect.AutoFillFormulasInLists = False