You could do the conversions with a macro like:
Code:
Sub ConvCurrency()
Application.ScreenUpdating = False
Dim Tbl As Table, r As Long, c As Long, xchg As Single, strVal As String
xchg = CSng(InputBox("Exchange Rate to Apply?", "ForEx Conversion", "1.00"))
If xchg <= 0 Then Exit Sub
For Each Tbl In ActiveDocument.Tables
With Tbl
c = .Columns.Count
For r = 1 To .Rows.Count
With .Cell(r, c).Range
strVal = Split(.Text, vbCr)(0)
If IsNumeric(strVal) Then
.Text = Format(CSng(strVal) * xchg, ",0.00")
Else
.Text = "USD"
End If
End With
Next
End With
Next
Application.ScreenUpdating = True
End Sub
For PC macro installation & usage instructions, see:
http://www.gmayor.com/installing_macro.htm