rrocker1405
Member
Hi,
Im using the following code to convert the number stored as text to number. However, I get out of memory run-time error 7. Am I doing something incorrect here?
Range("A2:BZ65000").Select 'specify the range which suits your purpose
With Selection
Selection.NumberFormat = "General"
.Value = .Value
ActiveSheet.Cells.ClearFormats
Range("a2").Select
End With
debugging points to .value = .value
Thanks in advance.
Kind regards,
Anand
Im using the following code to convert the number stored as text to number. However, I get out of memory run-time error 7. Am I doing something incorrect here?
Range("A2:BZ65000").Select 'specify the range which suits your purpose
With Selection
Selection.NumberFormat = "General"
.Value = .Value
ActiveSheet.Cells.ClearFormats
Range("a2").Select
End With
debugging points to .value = .value
Thanks in advance.
Kind regards,
Anand