如何向现有工作表添加新列并为其命名?
假设我有下面的工作表:
Empid EmpName Sal
1 david 100
2 jhon 200
3 steve 300
如何插入名为“Loc”的新列?
Empid EmpName Loc Sal
1 david uk 100
2 jhon us 200
3 steve nj 300
Suppose I have the worksheet below:
Empid EmpName Sal
1 david 100
2 jhon 200
3 steve 300
How can I insert a new column named "Loc"?
Empid EmpName Loc Sal
1 david uk 100
2 jhon us 200
3 steve nj 300
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
例如,使用范围插入方法
Use insert method from range, for example
对于您提出的问题
如果您有一种自动查找数据的方法(即将英国与雇主 ID 相匹配),那么您可以在 VBA 中执行此操作
For your question as asked
If you had a way of automatically looking up the data (ie matching uk against employer id) then you could do that in VBA