Return to VBA Code Examples

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!

alt text

Learn More!


<<Return to VBA Examples

vba-free-addin

VBA Code Examples Add-in

Easily access all of the code examples found on our site.

Simply navigate to the menu, click, and the code will be inserted directly into your module. .xlam add-in.

(No installation required!)

Free Download

Return to VBA Code Examples