fixed 😃😃😃😃😃
Sub Select_Bulk_Data_InputBox_Final4() Dim sheetName As String sheetName = "Data 1" ' <<-- Change only this if needed Dim wb As Workbook, ws As Worksheet, rng As Range Dim inputData As String, arrInput As Variant Dim searchValues() As String, cleanedValues() As String Dim removeChars As String, arrRemove As Variant Dim removeProvided As Boolean Dim colInput As String, arrCols As Variant Dim validCols As Collection Dim resultSheet As Worksheet Dim i As Long, j As Long, k As Long Dim cell As Range, cellValue As String Dim lastCol As Long, foundCount As Long Dim isFound As Boolean, msgText As String, cleaned As String On Error GoTo ErrHandler Application.ScreenUpdating = False Application.EnableEvents = False Set wb ...