Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am working with a workbook with 3 worksheets named "Sheet1", "wtf",
and "Sheet3." My procedure should look for data in the second sheet, "wtf", and if found, insert a row on Sheet1 and copy the data. One problem is that I can't seem to figure out a way to refer to the sheet by name. A second problem is that I don't want to work with a fixed number of rows - I would like to determine how many rows have data in the first column and use that as a loop limit. Any help would be appreciated. Bob. The code I have been playing with: Option Explicit Sub MoveData() Dim r As Long Dim wtf As Worksheet wtf = ActiveWorkbook.Sheets("wtf") For r = 1 To 500 If (Sheets("wtf").Cells(r, 3) < "") Or (Sheet2.Cells(r, 4) < "") Then Sheet1.Rows(1).Insert Sheet1.Cells(1, 1) = Sheet2.Cells(r, 3) Sheet1.Cells(1, 2) = Sheet2.Cells(r, 4) Sheet1.Cells(1, 3) = Sheet2.Cells(r, 3) + ", " + Sheet2.Cells(r, 4) End If Next End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2 worksheets--3 questions | Excel Worksheet Functions | |||
Lookup questions cross worksheets | Excel Discussion (Misc queries) | |||
View Questions and Answer to questions I created | Excel Discussion (Misc queries) | |||
Multiple Named Range questions | Excel Discussion (Misc queries) | |||
Newbie Questions - X Axis and Data Range | Charts and Charting in Excel |