Worksheet Change not working. Add-In problem.

mond007

New Member
Joined
Oct 9, 2008
Messages
34
Hi

I am problem solving a scenario where worksheet change does not always work. There are two cells Function Group and Generic Group. The code works out the Generic Group drop-down list based upon what Function Group was selected. BUT this does not always work (i.e.re-calculate the drop down on the second field) depending upon different users. After quite some comparisons it seems there is an Add-In called "Analysis Tookpak" checked in the Add-Ins (references).

I think I need some VBA code that will add this automatically regardless of operating system ????

I have the following code :

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim KeyCells As Range
    Set KeyCells = Range("CP_FG")
    
    If Not Application.Intersect(KeyCells, Range(Target.Address)) Is Nothing Then
        
        Dim sCell As Range
        Set sCell = Worksheets("Control").Range("startCell")
    
        Call Create_CP_FG_list(Range("CP_FG").Value, KeyCells, sCell, "CP_FG_Range")
        Worksheets("Create Position").Activate
        
    End If
End Sub
Thanks in advance.

Kuldip
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.

Forum statistics

Threads
1,223,896
Messages
6,175,262
Members
452,627
Latest member
KitkatToby

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