Try:
Sub RunMe()
Dim ws1 As Worksheet: Set ws1 = Sheets("Sheet1") 'this is you main sheet. You may need to change this to match
Dim ws2 As Worksheet: Set ws2 = Sheets("unqualified leads")
Dim ws3 As Worksheet: Set ws3 = Sheets("qualified leads")
Dim icell As Long
Application.ScreenUpdating = False
For icell = ws1.Range("G" & Rows.Count).End(xlUp).Row To 1 Step -1
Select Case ws1.Range("G" & icell).Value
Case Is = "Information"
ws1.Range("A" & icell).EntireRow.Copy Destination:=ws2.Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
ws1.Range("A" & icell).EntireRow.Delete Shift:=xlUp
Case Is = "Budget", "Quote"
ws1.Range("A" & icell).EntireRow.Copy Destination:=ws3.Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
ws1.Range("A" & icell).EntireRow.Delete Shift:=xlUp
Case Else
End Select
Next icell
Application.ScreenUpdating = True
End Sub
Bookmarks