View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Anders S Anders S is offline
external usenet poster
 
Posts: 35
Default Newby question: use a worksheet but not show?

Olly,

With Copy, you can try

Sheets("Sheet1").Range("G1").Copy _
Destination:=Sheets("Sheet2").Range("B6")

'---

If you just want to transfer the value, you can try

Sheets("Sheet2").Range("B5").Value = _
Sheets("Sheet1").Range("G1").Value

'---

The is seldom any need to use Select, however if you have to you can the following to increase speed and eliminate screen flicker

Application.ScreenUpdating = False
'code here
Application.ScreenUpdating =True

HTH
Anders Silvén

"Olly" skrev i meddelandet om...
How can I use a worksheet but change to it on the display?

Sheets("Order Input Forum").Select
Range("A13").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Order Records").Select
Range("C4").Select
ActiveSheet.Paste

Using this code how can I use the worksheets without jumping between
them on the display?

Thanks,
Olly