写了个入库的
Sub i()
Dim myrow As Long
Dim mydarow As Long
Dim myst As String
myst = Sheets("首页").Range("c8")
myrow = Sheets(myst).Range("a65536").End(xlUp).Row + 1
For mydarow = 1 To 3
Sheets(myst).Cells(myrow, mydarow) = Sheets("首页").Cells(mydarow * 2, 3)
Next
End Sub