我写了一些VBA来将一些工作簿中的一些数据复制并粘贴到另一个工作簿中:
Dim x As Workbook
Dim y As Workbook
' Open both workbooks
Set y = ActiveWorkbook
Set x = Workbooks.Open("Data.csv")
' Copy data from x
x.Sheets("SourceData").Range("A1", _
x.Sheets("SourceData").Range("A1").End(xlDown).End(xlToRight)).Copy
' Paste to y
y.Sheets("Destination").Range("C4").PasteSpecial Paste:=xlPasteValues
y.Sheets("Destination").Range("C4").PasteSpecial Paste:=xlPasteFormats
这会将数据粘贴到正确的位置。
VBA的下一步是按包含日期的第一列过滤数据表。但是,数据的粘贴会将所有内容转换为常规数据类型,但更重要的是,似乎会丢失字段中字符串后面的“日期值”。例如,当我尝试格式化粘贴后的日期列时,没有其他格式类型会更改单元格中显示的内容(即转换为数字仍将显示01/01/2018而不是43101)。这会导致过滤代码隐藏所有行,因为没有日期属于参数(因为实际上没有日期)。我甚至无法手动过滤日期(即没有VBA)。
This image shows how the preview for each data type is still 20/02/2018.
每当我手动复制并粘贴数据时,它都能正常工作,我可以用任何方式格式化日期。只是在使用VBA时才会出现格式化问题。
我尝试过的其他事情:
我想知道问题是否可能是由于Excel中的设置?任何帮助非常感谢。
答案 0 :(得分:1)
与@tigeravatar解决方案一致,但使用更简洁的代码
Dim y As Workbook
Set y = ActiveWorkbook
With Workbooks.Open("Data.csv").Sheets("SourceData") 'open source workbook and reference its "SourceData" sheet
With .Range("A1").CurrentRegion 'reference referenced sheet range "adjacent" to cell A1
y.Sheets("Destination").Range("C4").Resize(.Rows.Count, .Columns.Count).value = .value
End With
.Close False
End With
答案 1 :(得分:0)
不要复制/粘贴,直接设置值:
Dim x As Workbook
Dim y As Workbook
Dim rCSVValues As Range
' Open both workbooks
Set y = ActiveWorkbook
Set x = Workbooks.Open("Data.csv")
' Copy data from x
With x.Sheets("SourceData")
Set rCSVValues = .Range("A1", .Range("A1").End(xlDown).End(xlToRight))
End With
' Paste to y
y.Sheets("Destination").Range("C4").Resize(rCSVValues.Rows.Count, rCSVValues.Columns.Count).Value = rCSVValues.Value