ComboBox to Hide Columns

JoRyBar

New Member
Joined
Aug 19, 2018
Messages
17
Hello Gurus,

I am currently having trouble making my ComboBox ActiveX hide and unhide columns based on range of text in a row. I did not have an issue with the formula when it used to be a dropdown, but when I tried to convert using the ComboBox, I am having issues.

What I would like this code to do is the following: When a text is selected from the combo box, hide all the columns that DO NOT contain the text in rows B2:Z2 and show only the columns with the text. If the combo box is empty, it should show all columns.


This is the revised code I am working on:

Private Sub ComboBox1_Change()

Dim cl As Range
Dim Rng As Range, Fnd As Range

Set Target.Value = ComboBox1.Value

If Target.Address(0, 0) = ComboBox1.Value Then
If Target.Value = "" Then
Range("B:Z").EntireColumn.Hidden = False
Else
For Each cl In Range("B2:Z2")
cl.EntireColumn.Hidden = cl.Value <> Target.Value
Next cl
End If
End If

End Sub

I keep getting an object error. I tried to link the combobox to another cell, but then the selected cell will not activate, so the code will not work. Please help!! Thank you so much.

Best,
Excel Novice
 

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.
How about
Code:
Private Sub ComboBox1_Change()
Dim Cl As Range

If ComboBox1.Value = "" Then
   Range("B:Z").EntireColumn.Hidden = False
Else
   For Each Cl In Range("B2:Z2")
      Cl.EntireColumn.Hidden = Cl.Value <> ComboBox1.Value
   Next Cl
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,536
Members
449,037
Latest member
tmmotairi

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