Dim i As Long, curange As Range
With ActiveDocument.Tables(1)
For i = 1 To .Rows.Count
Set curange = .Cell(i, 1).Range
curange.Text = Format(Val(curange.Text), "$#,###.00")
Next i
End With

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> How do I apply currency formatting to an entire column or individual cells
> in
[quoted text clipped - 12 lines]
>
> Thank you!
kdw - 30 Nov 2005 22:18 GMT
With the exception of having to specify curange as Word.Range since I am
calling this in Acess, this works perfectly! Just what I am looking for.
Thank you Doug!
> Dim i As Long, curange As Range
> With ActiveDocument.Tables(1)
[quoted text clipped - 20 lines]
> >
> > Thank you!