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
VBA Coding Made Easy
Stop searching for VBA code online. Learn more about AutoMacro – A VBA Code Builder that allows beginners to code procedures from scratch with minimal coding knowledge and with many time-saving features for all users!