VBA – Select Non Contiguous Columns


Select Non-Contiguous Columns

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