所以我有这个程序;从远程系统扫描值。有时,如果网络中断,它会超时,并且会出现#nan错误或类似的错误。
当我尝试将该错误消息写入数据库时;它导致数据类型不匹配"因为它正在寻找一个数值。
为了解决这个问题,我决定尝试清理结果。所以我在下面有这个代码。它大部分时间都有效;我看到它失败的是,如果有一个数字中途,然后再次出错。一旦它到达数字数字,它似乎停止循环并且不清除任何其他东西。
任何人可以给我的帮助都会很棒;也许我这样做很糟糕。我试着举例说明我想在下面看到的内容。如果您有任何建议或问题,请告诉我。
Private Sub Clean()
'Select Current Row For where to start cleaning. LoopIndex is a global variable.
'Just giving the line of where to read from so I do not need to read the whole sheet.
Range("B" & LoopIndex).Select
'Start the loop, to go through the entire row.
Do Until IsEmpty(ActiveCell)
'Checks if it is a number value; if it is not it will clear out the data.
If IsNumeric(ActiveCell.Value) = False Then
ActiveCell.Value = ""
End If
ActiveCell.Offset(0, 1).Select
Loop
End Sub
它看起来像什么。
|A |B |C |D |
|#error|#Error|3 |#Error|
我希望它看起来像什么。
|A |B |C |D |
| | |3 | |
它在做什么。
|A |B |C |D |
| | |3 |#Error|
答案 0 :(得分:3)
试试这个
Sub RemoveErrors(TheRange As Range)
Dim c
For Each c In TheRange
If IsError(c) Then c.Value = ""
Next c
End Sub
编辑:没有循环的版本如果是公式错误可能会加快一点
Sub RemoveErrors(TheRange As Range)
On Error Resume Next
TheRange.SpecialCells(xlCellTypeFormulas, xlErrors).Value = vbNullString
On Error GoTo 0
End Sub
像这样使用:
Sub Test()
RemoveErrors Range("A1:D21")
End Sub
如果您更喜欢使用IsNumeric
功能,请使用此功能:
Sub RemoveNAN(TheRange As Range)
Dim c
For Each c In TheRange
If IsNumeric(c) = False Then c.Value = ""
Next c
End Sub
答案 1 :(得分:1)
对于不同工作表上的变量范围,我最终这样做了。我只是张贴这个,以便将来给别人一个解决方案。
感谢大家的帮助。
Private Sub Clean()
Dim StartRow As String
Dim LastCol As Long
Dim EndRow As String
Dim StartCol As String
Dim MyCol As String
StartCol = "B"
With ActiveSheet
LastCol = .Cells(LoopIndex, .Columns.Count).End(xlToLeft).Column
End With
MyCol = GetColumnLetter(LastCol)
RemoveErrors Range(StartCol & LoopIndex & ":" & MyCol & LoopIndex)
End Sub
'Does the replacing
Sub RemoveErrors(TheRange As Range)
Dim c
For Each c In TheRange
If IsError(c) Then c.Value = ""
Next c
End Sub
'Gets the Column Letter
Function GetColumnLetter(colNum As Long) As String
Dim vArr
vArr = Split(Cells(1, colNum).Address(True, False), "$")
GetColumnLetter = vArr(0)
End Function