V
VBAvirgin
Greetings,
I'm obviously new at VBA but I am attempting to understand it all.
There are a few of us where I work that have been given Excel to
replace our old program.
I am trying to put together a macro to prompt other users for input and
have their choice either accented or have that location jumped to or
indicated in some way.
My code is:
Sub FindIt()
Application.Goto Reference:="MyList"
Cells.Find(What:="*", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
MatchCase:=False _
, SearchFormat:=False).Activate
For some reason this code does not work.
Can anyone help me please?
I'm obviously new at VBA but I am attempting to understand it all.
There are a few of us where I work that have been given Excel to
replace our old program.
I am trying to put together a macro to prompt other users for input and
have their choice either accented or have that location jumped to or
indicated in some way.
My code is:
Sub FindIt()
Application.Goto Reference:="MyList"
Cells.Find(What:="*", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
MatchCase:=False _
, SearchFormat:=False).Activate
For some reason this code does not work.
Can anyone help me please?