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
 
Can't get the tutorial to work for you? Need help with your code?
Get answers right away at our AE Excel Support Forums!
No comments yet.