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

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
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
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,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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
Back
Top