Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I want to find an object in a column that matches the cell I am in, but I
want it to be interactive so that it always looks for whatever data exists in the current cell I am in. I am no programmer but I do edit Macros to do what I want. What I have tried to do is copy the current cell while recording a macro and then go to the column that I want to find this information in and select find. I then paste what is stored on the clipboard into the find box and then I end the Macro. What I see in the Macro is not what I want though. I want to paste what is on the current clipboard not a fixed set of text "Northwest Region - NW Region - Dist 3". ActiveCell.Offset(0, -1).Range("A1").Select Selection.Copy ActiveCell.Offset(0, -3).Columns("A:A").EntireColumn.Select ActiveCell.Offset(-12, -3).Range("A1").Activate Selection.Find(What:="Northwest Region - NW Region - Dist 3", After:= _ ActiveCell, LookIn:=xlFormulas, LookAt:=xlWhole, SearchOrder:=xlByRows, _ SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate ActiveCell.Offset(0, 1).Range("A1").Select End Sub -- db |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need help editing a macro | Excel Discussion (Misc queries) | |||
Macro editing | Excel Discussion (Misc queries) | |||
Editing a macro | Excel Discussion (Misc queries) | |||
Editing a macro | Excel Discussion (Misc queries) | |||
Editing Macro | Excel Discussion (Misc queries) |