A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
If I change the columns to a text format it actually removes the decimal point entirely?
Then your macro changes the cell format, try this macro in a new file.
Sub Test()
Range("A1").NumberFormat = "@"
Range("A1") = "239.00"
End Sub
Andreas.