Share via


Range.Calculate Method

Word Developer Reference

Calculates a mathematical expression within a range or selection. Returns the result as a Single.

Syntax

expression.Calculate

expression   Required. A variable that represents a Range object.

Example

This example inserts a mathematical expression at the beginning of the active document, calculates the expression, and then appends the results to the range. The result is "1 + 1 = 2".

Visual Basic for Applications
  Set myRange = ActiveDocument.Range(0, 0)
myRange.InsertBefore "1 + 1 "
myRange.InsertAfter "= " & myRange.Calculate

See Also