WD: Using WordBasic to Calculate a Square Root

Q120137


The information in this article applies to:


SUMMARY

To calculate the square root of a number in a Microsoft WordBasic macro, use the ToolsCalculate statement. For example, to find out the square root of 9, use the following WordBasic instruction:


    x = ToolsCalculate("9^0.5") 
The result, in this case the number 3, is assigned to the x variable. The following macro example posts the number 8 on the Word status bar (the square root of 64 is 8).

   Sub MAIN
      x = ToolsCalculate("64^0.5")
      Print x
   End Sub 
The ^ character is a mathematical operator used for powers and roots.


REFERENCES

"Microsoft Word Developer's Kit," version 6.0, pages 746-747

Additional query words: ToolsCalculate powers mathematical operator exponent

Keywords : wordnt kbmacroexample winword ntword macword word6 word7 word95
Issue type : kbhowto
Technology :


Last Reviewed: November 4, 2000
© 2001 Microsoft Corporation. All rights reserved. Terms of Use.