Bass71
MIS
- Jun 21, 2001
- 79
I'm looking to disregard case in the following code... I've tried UCase LCase, Option Explicit. Is there a simple way to "disable" this feature?
Dim rng As Range, r As Range, iCol As Integer, i As String, j As Integer
Set rng = Range([B2], [B2].End(xlDown))
i = InputBox("Type Text or Number to be Searched")
j = 0
For Each r In rng
For iCol = 2 To 11
With Cells(r.Row, iCol)
If .Value = i And j = 0 Then
Dim rng As Range, r As Range, iCol As Integer, i As String, j As Integer
Set rng = Range([B2], [B2].End(xlDown))
i = InputBox("Type Text or Number to be Searched")
j = 0
For Each r In rng
For iCol = 2 To 11
With Cells(r.Row, iCol)
If .Value = i And j = 0 Then