Home |
Search |
Today's Posts |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
there were a few typos in my code. There are additional macros in your code
that you didn't post. the following line won't work unless there if a function in your workbook called gettab Set TargetWs = gettab("tab1") Sub CreateTab1() Dim TargetWs As Worksheet Set TargetWs = gettab("tab1") Set Sourcews = Worksheets("Addtl Products") With TargetWs .Range("B3") = "Developers" .Range("C3") = Worksheets("Planner").Range("B5") TargetRow = 4 End With With Sourcews SourceRow = 12 Do While .Range("C" & SourceRow) < "" TargetWs.Range("C" & TargetRow) = .Range("C" & SourceRow).Value TargetWs.Range("D" & TargetRow) = .Range("B" & SourceRow).Value TargetWs.Range("E" & TargetRow) = .Range("D" & SourceRow).Value TargetRow = TargetRow + 1 SourcerowCount = SourcerowCount + 1 Loop End With TargetWs.Range("B" & TargetRow) = "Project Price" Set rPart = Worksheets("Addtl Products").Range("C12") End Sub "Heather" wrote: hi Phil, sorry, I'm new to this so I'm not completely sure what you mean by assigning them values? "Phil Hibbs" wrote: Looks like Joel introduced the Sourcerow and Targetrow variables to store the row numbers that you had hard coded. You need to define these variables and assign them values. Phil Hibbs. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
AutoRun Macro with a delay to give user the choice to cancel the macro | Excel Programming | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
Macro not showing in Tools/Macro/Macros yet show up when I goto VBA editor | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |