2017-09-15 32 views
1

我有一個電子表格,其中包含的數據以列a-z表示。此腳本適用於Col數據,但我希望它可以搜索col C.如何在col c中搜索字符串?我沒有找到任何字符串或沒有插入行。根據可變文本字符串搜索列插入X行數C

Option Explicit  
Sub Insert_Rows()  
Dim i As Long, lRows As Long, lastrow As Long, lngCount As Long 
Dim strTxt As String  
Application.ScreenUpdating = False  
lastrow = Cells(Rows.Count, "A").End(xlUp).Row 

lRows = Application.InputBox("How many rows do you want to insert?", Type:=1) 

If lRows < 1 Then 
    MsgBox " You must enter a number greater than zero" 
    Exit Sub 
End If 

strTxt = Application.InputBox("Enter the text string to search on. Rows will be inserted below each cell containing this string.") 

If Len(strTxt) < 1 Then 
    MsgBox "You must enter a text string consisting of at least one character" 
    Exit Sub 
End If 

With ActiveSheet 

    lngCount = Application.WorksheetFunction.CountIf(.Range("A1:A" & lastrow), strTxt) 

    If lngCount < 1 Then 
     MsgBox "The text string you entered is not listed - cancelling", vbExclamation 
     Exit Sub 
    End If 

    On Error Resume Next 

    For i = lastrow To 1 Step -1 
     If .Cells(i, 1).Value = strTxt Then 
      .Range("A" & i + 1 & ":A" & i + lRows).Insert shift:=xlDown 
     End If 
    Next i 

End With  
Application.ScreenUpdating = True   
End Sub 
+0

更改爲列A到C的引用? –

+0

我試過了。我到處都看到了'A',但它不起作用。你能更具體地瞭解哪些實際變化? – DubMartian

+0

除了所有'A'到'C',你還需要將'.Cells(i,1)'改爲'.Cells(i,3)' –

回答

0

您的直接問題已在問題的評論中得到解答。我傾向於將這些更改進一步推進,並用變量替換硬編碼列「A」或「C」。然後該函數可以用於任何列。

例如,這裏是你的代碼,修改,以獲取來自其他用戶的提示列:

Sub Insert_Rows() 
Dim i As Long, lRows As Long, lastrow As Long, lngCount As Long 
Dim col As String, strTxt As String 

Application.ScreenUpdating = False 

col = Application.InputBox("Which column should be inserted into?", Type:=2) 
lastrow = Cells(Rows.Count, col).End(xlUp).Row 

lRows = Application.InputBox("How many rows do you want to insert?", Type:=1) 
If lRows < 1 Then 
    MsgBox " You must enter a number greater than zero" 
    Exit Sub 
End If 

strTxt = Application.InputBox("Enter the text string to search on. Rows will be inserted below each cell containing this string.") 
If Len(strTxt) < 1 Then 
    MsgBox "You must enter a text string consisting of at least one character" 
    Exit Sub 
End If 

With ActiveSheet 
    lngCount = Application.WorksheetFunction.CountIf(.Range(col & "1:" & col & lastrow), strTxt) 

    If lngCount < 1 Then 
     MsgBox "The text string you entered is not listed - cancelling", vbExclamation 
     Exit Sub 
    End If 

    On Error Resume Next 

    For i = lastrow To 1 Step -1 
     If .Cells(i, col).Value = strTxt Then 
      .Range(col & i + 1 & ":" & col & i + lRows).Insert shift:=xlDown 
     End If 
    Next i 
End With 

Application.ScreenUpdating = True 
End Sub