Here is some math code that adds A to B:

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

But how can I calculate a square root of ABSumTotal? Is it possible in PowerPoint VBA?

link|improve this question

1  
Are you seriously trying to compute a square root in PowerPoint macros/VBA? Why do you need to do that in the first place? (Not mocking, just very curious.) – Mathias Nov 10 '09 at 22:18
it's just that I want to move some shapes along an ellipse orbit – brilliant Nov 10 '09 at 22:20
feedback

3 Answers

up vote 5 down vote accepted

Use: Sqr()

strMsg = "The answer is " & "$" & Sqr(ABSumTotal) & "."
link|improve this answer
slight improvement: strMsg = "The answer is $" & ABSumTotal & "." – CodeMonkey Nov 10 '09 at 22:20
Thanks a lot!!! – brilliant Nov 10 '09 at 22:23
you're welcome. – CodeMonkey Nov 10 '09 at 22:33
feedback

Have you tried the function Sqr?

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

link|improve this answer
feedback

You can use use ^ to compute X^(1/2)

Edit: added parenthesis

link|improve this answer
1  
I would generally advise against ^ since it's less readable. – CodeMonkey Nov 10 '09 at 22:21
I misreaded the question and answered for cubic root and made a correction afterwards. But I dont think x^1/2 is less readable than sqr(x) which looks like square to much to me :) – RC. Nov 10 '09 at 22:57
Doesn't exponentiation take precedence over division? If so, you'd need x^(1/2). – Dick Kusleika Feb 24 '10 at 18:15
@dkusleika, nice catch, thanks. – RC. Feb 24 '10 at 20:54
(^) is usually slower too. – RBarryYoung Feb 25 '10 at 3:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.