YOUR CURRENT LINE 1 IS Worksheets("Sheet1").Activate

NOTE: "Sheet1" is the actual name of you work sheet
           so if your other sheet's name is 'goodbye' then change the
code to
  Worksheets("goodbye").Activate

you can also have the code loop through all (OR some of your
worksheets), by Looping

 For worksheets(1) to worksheets(worksheets.count)
    Range("Interest").Offset(rowOffset:=-1, columnOffset:=2).Activate
    ActiveCell.Copy
    ActiveCell.Offset(rowOffset:=1, columnOffset:=0).Activate
    ActiveSheet.Paste
    ActiveCell.Offset(rowOffset:=1, columnOffset:=-3).Activate
Next
End Sub

I don't know if you wanted it, but your code can be shortened and
simplified (even though I did some, we can still go further)
GOOD LUCK

On Nov 30, 8:34 am, pete <sq...@netspace.net.au> wrote:
> Hi Gurus
>
> I've set up the following sub which I want to use on other sheets (set
> up the same) in the same workbook. It's in a module (I tried putting
> it in the sheets & this workbook) - still learning/trying.
>
> Sub Interest()
> '
> ' Keyboard Shortcut: Ctrl+i
> '
> 1.    Worksheets("Sheet1").Activate
>     ActiveCell = "Interest"
>     ActiveCell.Offset(rowOffset:=-1, columnOffset:=2).Activate
>     ActiveCell.Copy
>     ActiveCell.Offset(rowOffset:=1, columnOffset:=0).Activate
>     ActiveSheet.Paste
>     ActiveCell.Offset(rowOffset:=1, columnOffset:=-3).Activate
>
> End Sub
>
> I know line 1. needs to be changed but not sure what to. There are a
> total of 4 worksheets. I'm developing this on 2003 XP Pro but it also
> needs to work on 2007.
>
> All help appreciated.
>
> regards
> Pete

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe

Reply via email to