View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Suleman Peerzade[_2_] Suleman Peerzade[_2_] is offline
external usenet poster
 
Posts: 189
Default Transfer cell data from sheet to sheet?

Hi Jeremy,

Try this, say for eg. in sheet 2 you some data in Column. A and it is added
in row no A4. Now if you want the data in cell A4 to be transfered to Sheet
3! A1 the simplest thing is =Sheet2!A4. This can take any expression.
Excel 2003.

--
Thanks
Suleman Peerzade


"Jim May" wrote:

Sub tester()
Range("B1:B4").Cut Destination:=Sheets("Sheet2").Range("A1")
End Sub

is one way

"Jeremy" wrote:

How do I transfer cell data from one sheet to the next. The cell data
contains a SUM expression if that will make it more challenging?