Dropdown and changes

eyemgod

Board Regular
Joined
May 29, 2003
Messages
60
I have a drop down in a cell with 2 values. "AA", "BB" (This is located on Cell B1

When you select the Value "AA" I want the title of my list to be something in particular.

the List start on row 3
Example: Colum 1 (AA1), Column 2 (AA2)

If you change the value in B1 to "BB" then the title would change
Column 1 (BB1), Column 2 (BB2)

Hope this is understandable.

I try with Private Sub Worksheet_Change(ByVal Target As Range).
but everytime it changes the first value of the list, the function start over since is another change.
Can I stop it somehow to start over or is there a different way I could do that.

Thanks in advance

Andre
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Use Application.EnableEvents=False and Application.EnableEvents=True at the beginning and end of your code.

It will stop the change from triggering the macro again.
 
Upvote 0

Forum statistics

Threads
1,214,873
Messages
6,122,029
Members
449,061
Latest member
TheRealJoaquin

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