![]() |
|
|
|
#1
|
|||
|
|||
|
I have a data sheet with Tue, Fri, Sat, Sun.
I want to copy rows Labeled Tues. into another worksheet using a Macro I want to know is a way I can go to one cell and copy Then go the next cell four cells down and copy. sheet I can make the macro work by doing that but is there away to automate going four cells down What my macro does now is it goes from a worksheet labeled Tues and goes to a worksheet name data. I use the = sign to copy a cell from the data worksheet. I then use that cell to scoll the rest of that information in my Tues Work sheet. I then repeat the process but only four rows down. Is there a way to automate going 4 cells down Last edited by survivo01; 08-12-2014 at 01:12 PM. Reason: more infor |
|
#2
|
|||
|
|||
|
You need to use offset to go another cells down
Sheets("Sheet1).Select Selection.Offset(Rows,Columns).Select Selection.Copy Sheets("Sheet2").Select Selection.Offset(Rows,Columns).Select ActiveSheet.Paste Application.CutCopyMode=False ------------ Raju Singh |
|
| Tags |
| macro, navigation |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Macro Needed to bold specific lines and Macro to turn into CSV | anewteacher | Word VBA | 1 | 05-28-2014 03:59 PM |
| custom icon, undo/redo for macro, permanent macro | Rapier | Excel | 0 | 08-05-2013 06:30 AM |
| How do I assign a macro to a button when the macro is in my personal workbook? | foolios | Excel Programming | 2 | 07-27-2011 02:41 PM |