![]() |
#5
|
|||
|
|||
![]()
Create a macro. It takes a little bit of effort, but then it will be super super easy.
I can't take the credit for this macro, it comes from here: http://ask.brothersoft.com/how-do-i-...le-113359.html
Code:
Sub CurrencyTableFormat() ' ' CurrencyTableFormat Macro ' ' Dim tCell As Word.Cell Dim tRange As Range If Selection.Type = wdSelectionIP Or Not Selection.Information(wdWithInTable) Then MsgBox "Select numerical values in tables cells before running this macro.", , "Error" Exit Sub End If For Each tCell In Selection.Cells Set tRange = tCell.Range tRange.End = tRange.End - 1 With tRange If IsNumeric(tRange) Then .Text = FormatCurrency(Expression:=.Text) End If On Error Goto Skip Skip: End With Next tCell End Sub
![]() Last edited by macropod; 06-13-2014 at 03:46 PM. Reason: Added code tags & formatting |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Weird: 2 cells with data in Word 2010 table will not print! | Mendopaul | Word | 8 | 03-23-2014 02:18 PM |
![]() |
INDYBUG | Word Tables | 1 | 09-29-2013 05:47 PM |
![]() |
tinfanide | Word VBA | 12 | 02-09-2012 12:05 AM |
![]() |
tinfanide | Word VBA | 1 | 02-06-2012 05:57 AM |
Formatting Cells for Currency and Accounting | Sparetyme | Excel | 1 | 07-11-2010 01:26 PM |