ReplaceText Property [Excel 2003 VBA Language Reference]

True if text in the list of AutoCorrect replacements is replaced automatically. Read/write Boolean.

Example

This example turns off automatic text replacement.

With Application.AutoCorrect
    .CapitalizeNamesOfDays = True
    .ReplaceText = False
End With

Applies to | AutoCorrect Object