我是否必须将每个单元格范围放在单独的行中,就像这样
Range("A6:B" & Cells.SpecialCells(xlCellTypeLastCell).Row).HorizontalAlignment = xlLeft
Range("G6:H" & Cells.SpecialCells(xlCellTypeLastCell).Row).HorizontalAlignment = xlLeft
或者我可以以某种方式包括在一行中彼此不相邻的列组(从某些单元格一直向下)?以下代码似乎对我不起作用。
Range("A6:B,G6:H" & Cells.SpecialCells(xlCellTypeLastCell).Row).HorizontalAlignment = xlLeft