本文介绍了如何将列从一个excel传输到另一个excel文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个excel表,其中有些列在那里。我想将该列值转移到另一个excel文件中,此处列名将会更改。使用macor我想要这样做
I have one excel sheet in that some columns is there.I want to transfer that column value into another excel file here column name will be change.Using macor i wanto do this
推荐答案
Sub Macro1()
'
' Macro1 Macro
'
'
Columns("B:B").Select
Selection.Copy
Windows("Book2").Activate
Columns("F:F").Select
ActiveSheet.Paste
End Sub
您只需更改源和目标详细信息。
此技术对于创建任何宏非常有用 - 记录您想要执行的操作您将获得要调用的任何重复操作的基础
You just need to change the source and target details.
This technique is very useful for creating any macro - record what you want to do once then you will get the basis for any repeating action you want to call
这篇关于如何将列从一个excel传输到另一个excel文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!