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