If you want to see all the digits, you'll need to format those fields as text.

Something like this in a larger scale:

Sub FormatBigNos(): Dim S As String
ActiveCell.NumberFormat = "@"
S = CStr(ActiveCell): ActiveCell = S
End Sub