如何在PowerPoint VBA中执行平方根?

时间:2009-11-10 22:14:29

标签: math vba powerpoint powerpoint-vba square-root

这是一些将A添加到B的数学代码:

Sub math()
    A = 23
    B = 2
    ABSumTotal = A + B
    strMsg = "The answer is " & "$" & ABSumTotal & "."
    MsgBox strMsg
End Sub

但是如何计算ABSumTotal的平方根? 是否可以在PowerPoint VBA中使用?

3 个答案:

答案 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)

编辑:添加括号