2012-12-22 105 views
0

我写了一个代码来删除Excel表中的行,但它给了我一个错误,如主题中所述。VbScript抛出一个错误“未知的运行时错误”

CODE

Sub ChildPidDelt(ob3,DeletArr) 

Dim height,row,str,i 
Dim dataArray 
Dim d 
height = objExcel1.Application.WorksheetFunction.CountA(ob3.Columns(1)) 
'MsgBox(height) 
ReDim dataArray(height - 2, 0) ' -1 for 0 index, -1 for the first row as header row, excluded 
str = "" 
dataArray = ob3.Range(ob3.Cells(2, 1),ob3.Cells(height, 1)).Value 
Set d = CreateObject("scripting.dictionary") 
MsgBox(LBound(DeletArr) & ":" & UBound(DeletArr)) 
For i = LBound(DeletArr) To UBound(DeletArr) 
    If Not d.exists(DeletArr(i)) Then 
     d(DeletArr(i)) = 0 
    End If 
Next 
MsgBox(LBound(dataArray,1) & ":" & UBound(dataArray,1)) 
For i = LBound(dataArray, 1) To UBound(dataArray, 1) 
    If d.exists(dataArray(i, 1)) Then 

     str = str & (i+1) & ":" & (i+1) & "," 

    Else 
     'found = False 
    End If 
Next 
If Len(str) > 0 Then 
    MsgBox(Len(str)) 
    str = Mid(str, 1, Len(str) - 1) 
    MsgBox(str) 
    ob3.Range(str).Delete 

End If 

End Sub 

请看以下调试屏幕:

screen1 Screen2 Screen3 Screen4 Screen5

你能帮助我在这里说的是什么原因?

回答

1

Range()无法处理超过255个字符的字符串。

您可以通过将您的删除分为几部分来解决此问题。这里有一个简单的方法来做到这一点:你最后MSGBOX

dim x 
dim rangesToRemove 
rangesToRemove = Split(str,",") 
for x = UBOUND(rangesToRemove) to LBOUND(RangesToRemove) Step -1 
    ob3.Range(rangesToRemove(x)).delete 
next 

编辑后直接到位:好吧,由于您的评论这里是一个更复杂的方式,将打破删除成块。

dim x 
dim rangesToRemove 
dim strToRemove : strToRemove = "" 
rangesToRemove = Split(str,",") 
for x = UBOUND(rangesToRemove) to LBOUND(RangesToRemove) Step -1 
    strToRemove = strToRemove & rangesToRemove(x) 
    If Len(strToRemove) > 200 then 
     ob3.Range(strToRemove).delete 
     strToRemove = "" 
    else 
     strToRemove = strToRemove & "," 
    end if 
next 
If len(strToRemove) > 0 then 
    strToRemove = Left(strToRemove, Len(strToRemove) -1) 
    ob3.Range(strToRemove).delete 
end if 
+0

这样删除行,反正可以删除不需要的行,因为删除会导致行向上移动?有更快的过程吗?它会一个一个地删除对吗? –

+1

好吧,显然你可以把它分解成大块......我更新以显示一个可能的方式来做到这一点。 –

+0

不错的一个,只是为了确认它会是'UBOUND(rangesToRemove)'还是'UBOUND(rangesToRemove)-1'? –