请教,使用Excel VBA,如何隐藏某些标题下为空的列,见下图,隐藏B、D、F三列?谢谢
发布网友
发布时间:2022-06-01 02:50
我来回答
共1个回答
热心网友
时间:2023-11-16 00:56
Sub test()
i = 1
Do
If WorksheetFunction.CountA(Columns(i)) <= 1 Then Columns(i).EntireColumn.Hidden = True
i = i + 1
Loop Until Cells(1, i) = ""
End Sub