Hi Matt, you can Multiply it by .01
Jerid
Is there a way to format it rather than use a formula?
Not that I know of, you could run the follwing Macro, it will change each cells value for you.
Sub FixAmount()
Sheets("sheet1").Activate
Range("A1").Select
Do Until ActiveCell.Value = vbNullString
ActiveCell.Value = ActiveCell.Value * 0.01
ActiveCell.Offset(1, 0).Select
Loop
End Sub
Make sure to change "sheet1" to your Sheets Name and change the Range("A1") to your starting range.
I hope this helps.
Jerid
You could format the cells as
##"."##
or as already suggested put .01 in a cell, copy it, and paste special multiply over your column
good luck