这是一些将 A 添加到 B 的数学代码:
Sub math()
A = 23
B = 2
ABSumTotal = A + B
strMsg = "The answer is " & "$" & ABSumTotal & "."
MsgBox strMsg
End Sub
但是如何计算 ABSumTotal 的平方根?可以在 PowerPoint VBA 中使用吗?
这是一些将 A 添加到 B 的数学代码:
Sub math()
A = 23
B = 2
ABSumTotal = A + B
strMsg = "The answer is " & "$" & ABSumTotal & "."
MsgBox strMsg
End Sub
但是如何计算 ABSumTotal 的平方根?可以在 PowerPoint VBA 中使用吗?
使用:Sqr()
strMsg = "The answer is " & "$" & Sqr(ABSumTotal) & "."
你试过函数 Sqr 吗?
请参阅:http: //msdn.microsoft.com/en-us/library/h2h9y284%28VS.85%29.aspx
您可以使用 use^
来计算X^(1/2)
编辑:添加括号