Hello friend,
This does what you want i think
Option Explicit
Sub Macro1()
Dim blastrow As Long
Dim clastrow As Long
blastrow = Sheets("Sheet1").Range("B" & Rows.Count).End(xlUp).Row + 1
clastrow = Sheets("Sheet1").Range("C" & Rows.Count).End(xlUp).Row + 1
With Sheets("Sheet1").Range("D6")
.Copy Destination:=Sheets("Sheet1").Range("B" & blastrow)
.Copy Destination:=Sheets("Sheet2").Range("E1")
.ClearContents
End With
With Sheets("Sheet1").Range("E6")
.Copy Destination:=Sheets("Sheet1").Range("C" & blastrow)
.Copy Destination:=Sheets("Sheet2").Range("E2")
.ClearContents
End With
End Sub
Note: I changed the data entry cells from B6 & C6 to D6 & E6. The reason is because you would write over what you put in. You can modify those ranges to somthing else but you shouldnt have it in the same column that you are populating. Also on sheet 2 you have an array set up. The macro will not transpose in an array i dont think. You could just use a lookup function in E1 and E2 to accomplish what you want i think. Let me know.
Bookmarks