excel如何隔列选中
发布网友
发布时间:2022-04-30 14:57
我来回答
共2个回答
热心网友
时间:2022-06-25 19:23
在开始处(A1)插入一列,A1、B1、C1、D1,以此输入1、2、3、4,然后向后填充,然后选中全部数据,排序---选项---选中按行排序
热心网友
时间:2022-06-25 19:23
Sub 选中4倍数列()
Dim i, n
Application.ScreenUpdating = False
n = InputBox("输入需要选择多少列", , 4)'此处默认选择4列 即D H L P
Columns("A:C").Select
Selection.EntireColumn.Hidden = True
For i = 1 To n
Selection.Offset(0, 4 * i).EntireColumn.Hidden = True
Next
Range(Columns(1), Columns(4 * n)).Select
Selection.SpecialCells(xlCellTypeVisible).Select
For i = 1 To 4 * n
Cells.Columns(i).Hidden = False
Next
End Sub