美文网首页
VBA之插入整行单元格

VBA之插入整行单元格

作者: Valerie549 | 来源:发表于2017-12-04 17:17 被阅读0次

ActiveCell.Range("A1:I1").Select

Selection.Copy

ActiveCell.Offset(2, 0).Range("A1").Select

Selection.Insert Shift:=xlDown

Application.CutCopyMode = False

Selection.EntireRow.Insert , CopyOrigin:=xlFormatFromLeftOrAbove

ActiveCell.Rows("1:1").EntireRow.Select

Selection.ClearFormats

ActiveCell.Offset(1, 1).Range("A1").Select

相关文章

网友评论

      本文标题:VBA之插入整行单元格

      本文链接:https://www.haomeiwen.com/subject/ctixixtx.html