I am populating a worksheet from a database and need to convert the numeric strings to numbers so I can use them in graphs but skip over anyother strings such as "N/A"
I'm using
I need it to convert strings like "12.37 %" but as the grid could be huge eg 255 cols by 1000 rows and the sheet may be updated frequently, I dont want to use slow string manipulation.
does anyone have any suggestions?
Cheers
Snuv
"If it could have gone wrong earlier and it didn't, it ultimately would have been beneficial for it to have." : Murphy's Ultimate Corollary
I'm using
Code:
Private Sub ConvertData(ByVal startRow As Integer,ByVal startCol As Integer,ByVal endRow As Integer,ByVal endCol As Integer)
Dim i As Integer
Dim j As Integer
For i = startCol To endCol
For j = startRow To endRow
Dim x As String
x = Cells(j, i).Value
Dim nVal As Double
If IsNumeric(x) Then
Cells(j, i).Value = Val(x)
End If
Next
Next
End Sub
I need it to convert strings like "12.37 %" but as the grid could be huge eg 255 cols by 1000 rows and the sheet may be updated frequently, I dont want to use slow string manipulation.
does anyone have any suggestions?
Cheers
Snuv
"If it could have gone wrong earlier and it didn't, it ultimately would have been beneficial for it to have." : Murphy's Ultimate Corollary