how to make a line over text

G

Greg Maxey

Scott,

You can do this with an EQ field.

Type: EQ \x\to(Your Word Here) select the entire statement and press
CTRL+F9 then right click and select Update Field.

It you do this routinely, you ming find the following macro useful:

Public Sub Negate()

Dim Expr As String
Expr = InputBox("Enter the expression to negate:", "Negate")
If Expr <> "" Then
ActiveDocument.Fields.Add Range:=Selection.Range, _
Type:=wdFieldEmpty, _
Text:="EQ \x\to(" & Expr & ")", _
PreserveFormatting:=False
End If
End Sub
 
T

Tina

-----Original Message-----
Does anyone know how to create a line over a word?
.
If I understand correctly, there is a function for
tracking changes that puts a strike through line through
the text. Is this what you're referring too. Go to tools
and track changes.
 
Top