2

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

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

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

4

3 回答 3

6

使用:Sqr()

strMsg = "The answer is " & "$" & Sqr(ABSumTotal) & "."
于 2009-11-10T22:18:54.933 回答
2

你试过函数 Sqr 吗?

请参阅:http: //msdn.microsoft.com/en-us/library/h2h9y284%28VS.85%29.aspx

于 2009-11-10T22:19:24.573 回答
1

您可以使用 use^来计算X^(1/2)

编辑:添加括号

于 2009-11-10T22:19:38.380 回答