VBA: Select Non Contiguous Columns

August 14th, 2004 | Categories: VBA | Tags:

To select non contiguous columns using VBA, you need to hard code each column value. Here is an example that will select columns A C E and G.

The following macro shows the VBA format to select non contiguous columns:

Sub SelectNon()

    Range("A:A,C:C,E:E,G:G").Select

End Sub
 
No comments yet.