xp
excel 2k
Hi,
I have a spreadsheet with certain alphanumeric and sometimes numeric values only. I have formated the column as text, but sometimes, the values are shrank in this way 1.3209E+11. My ? is how can I get rid of this and replace it with its true value 132090115901? If there is a way to do this without writing some code, then great. Please let me know. otherwise maybe the code bellow could be the basis.
Thanks for your anticipated answers.
Alex
Code:
Dim i As Integer
Dim lastrow As Long
lastrow = ActiveSheet.UsedRange.Rows.Count
For i = 1 To lastrow
Range("G" & i).Select
????????????????????
Next i