是否可以在单元格中使用公式进行除法?
我需要将公式放在单元格中。
我试过但没有工作。
Range("A1").Formula = "="& Range(Cells(4,5),Cells(4,9)).Address(False, False) & ")"
答案 0 :(得分:1)
这样的东西?
Sub Main()
Dim lastCol As Long
lastCol = 5
Range("A1").Formula = "=" & Cells(4, lastCol).Address & "/" & Cells(10, lastCol).Address
End Sub