I have the following VBA Code that works, but I just need to do this for many more columns. I'm an absolute VBA novice, so I'm hoping there is a way to make this iterate through a column range?
Sub ColumnWidth()
Columns("a").ColumnWidth = [a3]
Columns("b").ColumnWidth = [b3]
Columns("c").ColumnWidth = [c3]
Columns("d").ColumnWidth = [d3]
Columns("e").ColumnWidth = [e3]
Columns("f").ColumnWidth = [f3]
End Sub
Ay assistance would be greatly appreciated!
Sub ColumnWidth()
Columns("a").ColumnWidth = [a3]
Columns("b").ColumnWidth = [b3]
Columns("c").ColumnWidth = [c3]
Columns("d").ColumnWidth = [d3]
Columns("e").ColumnWidth = [e3]
Columns("f").ColumnWidth = [f3]
End Sub
Ay assistance would be greatly appreciated!