我当前的计算,将值返回到 msgbox。
我想要一个进一步的 msgbox 询问“你想粘贴值吗”,然后能够选择一个单元格来粘贴值。
我不知道如何保留计算结果以便能够粘贴它。
Sub CalcmsgboxAcre()
On Error Resume Next
Dim num As Double
num = Application.InputBox(prompt:="Please Enter The Number Of Hectares You Would Like To Calculate Into Acres ", Type:=1)
MsgBox Format(num * 2.471054, "#,##0.00") & " Is the Number Of Acre's."
End Sub