Hiding tab code not recognizing number generated from Active X control

Newport Count

Active Member
Joined
Oct 25, 2009
Messages
328
Hi there,

I have added the following basic code to auto hide certain tabs in a spreadsheet, based on a cell value in a specific tab (cell C30):

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

If [C30] = "58" Then
Sheets("Apr 2018 Correction Detail").Visible = True
Else
Sheets("Apr 2018 Correction Detail").Visible = False
End If

If [C30] = "57" Then
Sheets("Mar 2018 Correction Detail").Visible = True
Else
Sheets("Mar 2018 Correction Detail").Visible = False
End If

End Sub


This works ok when I manually enter these numbers into the cell, but not when they are generated from an Active X control that populates via a cell link.

Any ideas? No formatting seems to work.


Cheers,
Rich
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
ActiveX controls do not trigger Change events. You'll need to run the code from the activeX control.
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,221,821
Messages
6,162,157
Members
451,750
Latest member
pnkundalia

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