Thread: Find Function
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
reggie reggie is offline
external usenet poster
 
Posts: 30
Default Find Function

i used the find fuction in vba, but its case sensitive. How do make it not
case sensitive heres a sample of the code i have so far.

Set coolName = Worksheets("Promotional").Range("B4")
With Worksheets("USERS").Range("a1:a500")
Set c = .Find(coolName)

If c = coolName Then
Worksheets("Promotional").Range("g10").Value = "test"
c.Offset(columnOffset:=5) = "testing"
End If
End With