column selection vba

jasman

Board Regular
Joined
Oct 30, 2010
Messages
141
Hi. Ive got the below code but it keep erroring:

Sheet1.Columns("E:IO").Select
Selection.Interior.ColorIndex = xlNone
Selection.Columns.Ungroup

im just trying to select the columns to ungroup them and remove colour
any ideas? thanks
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Try:
Code:
With Sheets("Sheet1").Columns("E:IO")
   .Interior.ColorIndex = xlNone
   .Columns.Ungroup
End With
 
Upvote 0
Select Sheet2 and then try running like this:
Code:
With .Columns("E:IO")
   .Interior.ColorIndex = xlNone
   .Ungroup
End With
If there's still a problem, try FIRST grouping your columns and then re-running. Otherwise there's something else that you've not indiciated
 
Upvote 0
You should only get that error if you got the sheet name wrong.
 
Upvote 0
I guess this:

Code:
Sub GG()

    With Sheet1.Columns("E:IO")
        .Interior.ColorIndex = xlNone
        .UnMerge
    End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,224,582
Messages
6,179,670
Members
452,936
Latest member
anamikabhargaw

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