Change a cod

PARSA

New Member
Joined
Jan 30, 2014
Messages
44
HI TO ALL,
I HAVE THIS COD:
Code:
Dim C As RangeFor Each C In Sheet1.Range("B3:B2003")
If C = TextBox1.Text Then
        ListBox1.AddItem C
End If
Next C
BUT I WANT "C" CONTAINS TEXTBOX1.TEXT AND NOT C = TextBox1.Text
WHAT CAN I DO?
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)

Momentman

Well-known Member
Joined
Jan 11, 2012
Messages
4,142
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Something like this
Code:
Sub newsub()
    Dim C As Range
    For Each C In Sheet1.Range("B3:B2003")
        On Error Resume Next
        If InStr(1, C.Value, TextBox1.Text) > 0 Then
                ListBox1.AddItem C
        End If
    Next C
End Sub
 
Upvote 0

PARSA

New Member
Joined
Jan 30, 2014
Messages
44
Something like this
Code:
Sub newsub()
    Dim C As Range
    For Each C In Sheet1.Range("B3:B2003")
        On Error Resume Next
        If InStr(1, C.Value, TextBox1.Text) > 0 Then
                ListBox1.AddItem C
        End If
    Next C
End Sub
THANKS
51.gif
 
Upvote 0

Forum statistics

Threads
1,190,648
Messages
5,982,118
Members
439,756
Latest member
alice128

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Top