Cut Method

  • Thread starter Thread starter Greg Zadacha
  • Start date Start date
G

Greg Zadacha

Hi,

I am trying to move some formulas onto a new sheet.

My code below does not work for some reason. Something wrong with the
destination range.
Using Xl 97 on Windows NT 4.0.


'**********************************
ActiveWorkbook.Sheets.Add
ActiveWorkbook.Sheets(1).Range("EA1:GM183").Cut _
Destination:=ActiveWorkbook.Sheet(2).Range("A1")
'**********************************

Thank you in advance for your help!
Greg
 
Destination:=ActiveWorkbook.Sheet(2).Range("A1")

shouild be

Destination:=ActiveWorkbook.Sheets(2).Range("A1")

Add an "s" to Sheet
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top