Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a macro which copies specific information from a target row on one
worksheet, and copies that information to the first blank cell it finds on a designated worksheet. However, I need for it to begin looking for the first blank cell on row 12. Here is the macro I currently have: Sub CopyRetailerInfo() Dim BlankCell As Integer Range(ActiveCell, ActiveCell.Offset(0, 4)).Copy Worksheets("Field Activity Report").Select BlankCell = Application.WorksheetFunction.CountA(Worksheets("F ield Activity Report").Range("D:D")) + 1 Worksheets("Field Activity Report").Cells(BlankCell, 4).Select Selection.PasteSpecial (xlPasteValues) Application.CutCopyMode = False Worksheets("Survey Spreadsheet").Select End Sub Can you help correct this macro so it begins on row 12? Thanks for your help. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Line chart - Series designation | Excel Discussion (Misc queries) | |||
column designation has started to appear as numbers | Excel Discussion (Misc queries) | |||
Removing file [Group] designation | Excel Discussion (Misc queries) | |||
cell designation | Excel Discussion (Misc queries) | |||
Columns with # designation | Excel Discussion (Misc queries) |