D
Dewi...
Hello
I have some macros (sample below) I have a button to run.
Since it copy's each cell from one worksheet to the other, about (10
items) the sheets flick back and forth as the macro runs, so looks
like a flicking screen, could cause problems etc, how can I make it so
there is not back and forth with each line.
Hope I have explained it reasonably ok...
Thanks
-------------------------------
Range("B4").Select
Selection.Copy
Sheets("Invoice List").Select
Range("B4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Invoice").Select
Range("C6").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Invoice List").Select
Range("A4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Invoice").Select
Range("G6").Select
etc
I have some macros (sample below) I have a button to run.
Since it copy's each cell from one worksheet to the other, about (10
items) the sheets flick back and forth as the macro runs, so looks
like a flicking screen, could cause problems etc, how can I make it so
there is not back and forth with each line.
Hope I have explained it reasonably ok...
Thanks
-------------------------------
Range("B4").Select
Selection.Copy
Sheets("Invoice List").Select
Range("B4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Invoice").Select
Range("C6").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Invoice List").Select
Range("A4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("Invoice").Select
Range("G6").Select
etc