Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I would like to seach for a word in a range of cells and when found, copy and paste that cell into another page. I built a little macro but have a challenge if the word I am searching-for is not found (something I did not plan-for and I am a newbie for-sure). here is what it does now: ' find "component(s)" and copy Cells.Find(What:="component(s):", After:=ActiveCell, LookIn:=xlFormulas, _ LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _ MatchCase:=False, SearchFormat:=False).Activate Selection.Copy ' select different worksheet to paste-to Sheets("Condensed ChangeLog").Select ' Paste "component(s)" ActiveCell.Offset(2, -1).Select ActiveSheet.Paste So with the new issue where it may not be found, I would like to instead paste in the destination cell the words "no components found". So it seems I need some logic that if-not found, then... Help appreciated. ~Vic |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 Conditional formatting challenge question | Excel Discussion (Misc queries) | |||
conditional formatting challenge | Excel Discussion (Misc queries) | |||
conditional statement to find more than one value ?? | Excel Programming | |||
Conditional find | Excel Programming | |||
Conditional find | Excel Programming |