Hi,
i have a sheet 1 and sheet 2 have a data column from A to I its starts from row# 5 to 108. Now all the data from sheet 1 and sheet 2 need to transfer to sheet 3 by clicking button transfer has offset line from both sheets 1 & 2.
Sub trans1234()
Sheets("sheet1").Range("A5:I5").Copy Sheets("Sheet3").Range("A5").Offset(0, 0)
Sheets("sheet1").Range("A6:I6").Copy Sheets("Sheet3").Range("A6").Offset(0, 0)
End Sub
Private Sub Button3_Click()
Sheet2.UsedRange.Offset(4).Clear
Sheet1.[A5:I5].Resize(Sheet1.Cells(Rows.Count, 1).End(xlUp).Row - 4).Copy Sheet2.[A5]
Sheet4.[A5:I5].Resize(Sheet4.Cells(Rows.Count, 1).End(xlUp).Row - 4).Copy Sheet2.Cells(Rows.Count, 1).End(xlUp)(2)
End Sub
… maybe someone else may understand your need.join a workbook with Sheet #3 as expected result
Dear Marc L,As my test computer is under an older Excel version,
I saw nothing in your sheets but formula errors only !
So data is from row #5 to row #108
as you had yourself explained in initial post ‼
As I can not grab another computer maybe until next week,
wait for someone else or at least join a crystal clear workbook
with only values instead of formulas and, for the third time,
a Sheet3 expected result !