Deleting non-contiguous columns based on column number

sodabrab

New Member
Joined
Nov 4, 2010
Messages
10
Hey everyone,

I'm having a little trouble. I was able to select one group that I wanted to delete based on the column number because I am using a variable:

Code:
Range(Columns(10), Columns(testint - 10)).Select
Selection.Delete Shift:=xlToLeft
testint is just the number of columns in the sheet

But I want to select another range at the same time so the testint variable would still be valid:
Code:
Range(Columns((testint - 4), Columns(testint)).Select
I tried using union in the code below but I got an error.
Code:
Union(Range(Columns(10), Columns(testint - 10)), Range(Columns((testint - 4), Columns(testint)))).Select
Selection.Delete Shift:=xlToLeft

Is there another way to do this? Thanks for the help.
 
Last edited:

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi
Welcome to the board

There's no problem with what you are trying to do, you just messed up the parentheses. Try:

Code:
    Union(Range(Columns(10), Columns(testint - 10)), Range(Columns(testint - 4), Columns(testint))).Select
    Selection.Delete Shift:=xlToLeft

Remark:

You don't need to select the range:

Code:
    Union(Range(Columns(10), Columns(testint - 10)), Range(Columns(testint - 4), Columns(testint))).Delete
 
Upvote 0

Forum statistics

Threads
1,216,100
Messages
6,128,829
Members
449,471
Latest member
lachbee

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top