-1
I’m doing a simple macro, but I’m not getting it. I want the macro to locate the value of a specific cell, that this value is varying while the macro is generating:
Sub teste()
Range("C1").Select
Selection.Copy
Cells.Find(What:="36 ", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
End Sub
Here it is locked always looking for the 36, but I want you to look for the value that is in "C1".