RE: $$Excel-Macros$$ moving data to another sheet by using vba macro

2010-10-31 Thread Daniel
Hello, Try : Private Sub cmdMove_Click() Dim inCalculationMode As Integer Application.ScreenUpdating = False inCalculationMode = Application.Calculation Application.Calculation = xlCalculationManual Range("A6:I" & [A65536].End(xlUp).Row).Copy _ Sheets(

Re: $$Excel-Macros$$ moving data to another sheet by using vba macro

2010-10-31 Thread ashish koul
try this code see is it helps . Sub Macro1() Dim z As Long Sheets("Tambah").Select Range("A6").Select Range(Selection, Selection.End(xlDown)).Select Range(Selection, Selection.End(xlToRight)).Select Application.CutCopyMode = False Selection.Copy Sheets("Data