Hiding a column via a combo box

biggreen32

New Member
Joined
Aug 5, 2010
Messages
1
hello: Please forgive my ignorance as i am very new to writing macros. I am wondering if someone could give me some help writing a macros that will hide a column (on a different worksheet) when I make a selection from a combo box? The combo box only has two possible selections. When the first option is selected the column would not be hidden...when the second option is selected the macro would fire and hide the column.

Thanks very much.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Try this

Code:
Private Sub ComboBox1_Change()
    If ComboBox1.ListIndex = 1 Then Sheets("Sheet2").Columns("J:J").Hidden = True
    If ComboBox1.ListIndex = 0 Then Sheets("Sheet2").Columns("J:J").Hidden = False
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,684
Members
448,977
Latest member
dbonilla0331

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