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

ok heres the problem now, it finds the data with no problems, but it wont put
in a specific value next to it(using the offset fuction):

sample code:

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


'----------this next part is what its not doing----------

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


"moondark" wrote:


Code:
--------------------
Set coolName = Worksheets("Promotional").Range("B4")
With Worksheets("USERS").Range("a1:a500")
Set c = .Find(What:=coolName,MatchCase:=false)

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


--------------------


should work now ;)


--
moondark
------------------------------------------------------------------------
moondark's Profile: http://www.excelforum.com/member.php...o&userid=27390
View this thread: http://www.excelforum.com/showthread...hreadid=469423