Try the following:
Sub IndentTextInCell()
Dim p As Paragraph
If Selection.Cells.Count > 0 Then
For Each p In Selection.Cells(1).Range.Paragraphs
p.Indent
Next p
End If
End Sub
According to Word VBA Help, the Indent method is equivalent to
pressing the Increase Indent button on the Formatting toolbar.
If you want to set a specific indent, you'd have to use the LeftIndent
property instead -- something like this:
Sub IndentTextInCell2()
If Selection.Cells.Count > 0 Then
Selection.Cells(1).Range _
.Paragraphs.Format.LeftIndent = 18 'Indent measured in
'points.
End If
End Sub
Note that setting a left indent for numbered paragraphs may cause a
conflict with the indent settings in the Numbering dialog box; the
latter will then eventually "win".

Signature
Stefan Blom
Microsoft Word MVP
> When a user places the cursor at any point in a cell in a table,
> I am trying to select all the text within the cell and then indent it. The
[quoted text clipped - 16 lines]
> End If
> End Sub
Stephen English - 31 Jan 2006 04:39 GMT
Hi Stefan
Thank you - that was a great help
Stephen
> Try the following:
>
[quoted text clipped - 48 lines]
> > End If
> > End Sub
Stefan Blom - 31 Jan 2006 08:11 GMT
You are welcome.

Signature
Stefan Blom
Microsoft Word MVP
> Hi Stefan
> Thank you - that was a great help
[quoted text clipped - 52 lines]
> > > End If
> > > End Sub