Thread: VB Formula
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default VB Formula

One way:

Sheets("Sheet1").UsedRange.Cells.Copy _
Destination:=Sheets("Sheet2").Range("A1")

In article ,
bowling wrote:

Hello,

How could can copy the data from sheet1 to sheet use VB formula?

Thank you