I’m trying to select multiple columns using Columns, or Range, or Cells, or whatever.
The thing is that I need to select it by column number and the columns are not consecutive.

So if I need to select columns B and E.
I can use
 Range(“B:B,E:E”).select
But I need to use something like
 Columns(2,5).select
But that doesn’t work…
Is there any other way to do it?

Thanks,
Yonyon