Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I actually have a couple of questions:
I have a workbook with 2 worksheets in it. On worksheet2 is a list of names, unformatted and raw. The list exists simply to be a list that can be updated, but has no purpose other than that. On worksheet 1 I have a schedule of sorts. I have been recording a macro to find and format the names from the list on worksheet2. Here is the code I have: Sub proline() ' ' proline Macro ' Macro recorded 11/2/2004 by SGAUER ' ' Cells.Find(What:="anix", After:=ActiveCell, LookIn:=xlFormulas, LookAt _ :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _ False).Activate With Selection.Interior .ColorIndex = 43 .Pattern = xlSolid End With Selection.Font.Bold = True Cells.Find(What:="bach", After:=ActiveCell, LookIn:=xlFormulas, LookAt _ :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _ False).Activate With Selection.Interior .ColorIndex = 43 .Pattern = xlSolid End With Selection.Font.Bold = True Cells.Find(What:="buck", After:=ActiveCell, LookIn:=xlFormulas, LookAt _ :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _ False).Activate With Selection.Interior .ColorIndex = 43 .Pattern = xlSolid End With Selection.Font.Bold = True Cells.Find(What:="bwoo", After:=ActiveCell, LookIn:=xlFormulas, LookAt _ :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _ False).Activate With Selection.Interior .ColorIndex = 43 .Pattern = xlSolid End With Selection.Font.Bold = True ActiveWindow.ScrollRow = 1 Range("A1").Select End Sub How do I simplify it and write a next code so that it will automatically read from the list and format the names accordingly on worksheet 1? Thanks for your help, Steve |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need help simplifying VBA code | Excel Discussion (Misc queries) | |||
Code needs simplifying | Excel Worksheet Functions | |||
Simplifying VBA code | Excel Worksheet Functions | |||
Simplifying formula | Excel Discussion (Misc queries) | |||
Simplifying code using array | Excel Programming |