繁体   English   中英

Excel VBA:将数据从一个工作簿中的列转移到另一工作簿中的行

[英]Excel VBA: Transpose data from columns in one Workbook to rows in another workbook

我是VBA的新手。

当行引发数据错误时,将数据从一个工作簿中的列转移到另一工作簿中。 尝试了Stack Overflow和其他地方的建议,但没有成功。

错误运行时错误1004-> Range类的PasteSpecial方法失败

码:

Sub Button1_Click()
Dim MyFile As String
Dim erow
Dim FilePath As String
FilePath = "C:\trial\"
MyFile = Dir(FilePath)
Do While Len(MyFile) > 0
If MyFile = "here.xlsm" Then
Exit Sub
End If
'Opening data.xls to pull data from one column with 2 values (E6 and E7)
Workbooks.Open (FilePath & MyFile), Editable:=True
Dim SourceRange As Range
Set SourceRange = ActiveSheet.Range("E6:E7")
SourceRange.Copy
ActiveWorkbook.Close SaveChanges:=True
'Back to calling file - here.xlsm and pasting both values in single row (for e.g. A2 and B2)
erow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
Dim targetRange As Range
Set targetRange = ActiveSheet.Cells(erow, 1)
targetRange.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=True
MyFile = Dir
Loop
End Sub

这是因为您不能只执行两个值并同时进行转置。

尝试这个:

Sub Button1_Click()
Dim MyFile As String
Dim erow
Dim FilePath As String
Dim swb As Workbook
Dim twb As Workbook

Set twb = ThisWorkbook
FilePath = "C:\trial\"

MyFile = Dir(FilePath)
Do While Len(MyFile) > 0
    If MyFile = "here.xlsm" Then
        Exit Sub
    End If
    'Change "Sheet1" below to the actual name of the sheet
    erow = twb.Sheets("Sheet1").Cells(twb.Sheets("Sheet1").Rows.Count, 1).End(xlUp).Offset(1, 0).Row
    'Opening data.xls to pull data from one column with 2 values (E6 and E7)
    Set swb = Workbooks.Open(FilePath & MyFile)
    'assign values
    twb.Sheets("Sheet1").Cells(erow, 1).Resize(, 2).Value = Application.Transpose(swb.ActiveSheet.Range("E6:E7").Value)
    'close
    swb.Close SaveChanges:=True

    MyFile = Dir
Loop
End Sub

这似乎可行:这是一个更简单的示例,它执行相同的复制/粘贴方法操作仅适用于活动对象(例如工作表,范围等),因此您需要先激活一个对象,然后再激活另一个对象,

Sub tst1()
Dim inbook, outbook As Workbook
Dim inSheet, outSheet As Worksheet
Dim inRange, outRange As Range


Set inbook = Application.Workbooks("temp1.xlsx")
Set outbook = Application.Workbooks("temp2.xlsx")

Set inSheet = inbook.Worksheets("sheet1")
Set outSheet = outbook.Worksheets("sheet1")

inSheet.Activate

Set inRange = ActiveSheet.Range("a1:b4")
inRange.Copy

outSheet.Activate
Set outRange = ActiveSheet.Range("a1:d2")
outRange.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=True

End Sub

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM