How can I select non-adjacent columns (or rows) without multiple commands? For example, the following cleans up a bunch of column widths for me. As you can see, there are multiple columns that are not adjacent to each other that need widths of 10. Is there a way to do this with a single selection? Not a big deal for sure...just trying learn better and more efficient methods.
Columns("A:A").ColumnWidth = 5.89
Columns("C:C").ColumnWidth = 7
Columns("D:G").ColumnWidth = 10
Columns("H:H").ColumnWidth = 5.29
Columns("I:L").ColumnWidth = 10
Columns("O:S").ColumnWidth = 10
Columns("T:T").ColumnWidth = 7
Thanks. Wayne
Columns("A:A").ColumnWidth = 5.89
Columns("C:C").ColumnWidth = 7
Columns("D:G").ColumnWidth = 10
Columns("H:H").ColumnWidth = 5.29
Columns("I:L").ColumnWidth = 10
Columns("O:S").ColumnWidth = 10
Columns("T:T").ColumnWidth = 7
Thanks. Wayne