Make Drop Down Temporarily Wider For Multiple Columns

AlexBB

New Member
Joined
Jun 21, 2022
Messages
8
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
Platform
  1. Windows
Hi everyone,

I'm kind of new and still learning how to properly use VBA and code in Excel. Currently, I'm struggling with adjusting the following 'standard code' from contextures to apply to multiple columns (J to AJ, or number 10 to 36). I've tried multiple variants, but struggle with making the columns go back to their initial width.

The standard code:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Target.Column = 1 Then
Target.Columns.ColumnWidth = 30
Else
Columns(1).ColumnWidth = 5
End If
End Sub

A code I've tried:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Select Case Target.Column
Case 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36

If Target.Count < 9 Then Exit Sub
If Target.Column > 9 Then
Target.Columns.ColumnWidth = 25
Else:
Worksheets("KARTLEGGING").Columns("J:AJ").ColumnWidth = 5
End If

End Select
End Sub


Would anyone be able to help me?
 
The column width only stays at 30 if the active cell is in columns 10 to 30
Your Post says:
Make Drop Down Temporarily Wider
Temporary only means when your in that cell
 
Upvote 0

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
OK so I have made several postings.
Tell me again what columns are we working with?

And is nothing happening when you select any column from 10 to 30
 
Upvote 0
Just read the posts, and yes, I want the width to be 30 when the cell is active and revert to 5 when it isn't. I think I got confused between temporary and active.

The columns are from number 10 (J) to 36 (AJ). Now that I tried clicking around, I can see that the code works when I click in the column range, all except for the rows 3-5.
Is there a way to make it work for only when the merged cell from row 3-5 are activated? I had not considered this aspect at all
 
Upvote 0
Just read the posts, and yes, I want the width to be 30 when the cell is active and revert to 5 when it isn't. I think I got confused between temporary and active.

The columns are from number 10 (J) to 36 (AJ). Now that I tried clicking around, I can see that the code works when I click in the column range, all except for the rows 3-5.
Is there a way to make it work for only when the merged cell from row 3-5 are activated? I had not considered this aspect at all
I thought the whole ideal was column 10 to 36

Now you said:
Is there a way to make it work for only when the merged cell from row 3-5 are activated?
So do nothing about columns 10 to 36

Merged cells are always a problem. If you notice on this forum it nearly always suggested to not use merged cells.
I know of no way to make it work with merged cells.
And you said: all except for the rows 3-5.
Do you mean rows 3 to 5 of columns 3 to5?
 
Upvote 0
Got it! Now it works like a charm. Thank you so much for the help :)
Are you sure? Or are you tired of talking with me. I may sometimes be a little blunt. I like helping but get confused when user says it's not working.
Case is a great way to not need a lot of if statements.
 
Upvote 0
Are you sure? Or are you tired of talking with me. I may sometimes be a little blunt. I like helping but get confused when user says it's not working.
Case is a great way to not need a lot of if statements.
Not at all - you wrote before, that merged cells are bothersome. So I made adjustments to the sheet, deleted the merged cells, and moved everything up, so that the drop-down list would be in the first row. And now it works when I click on first cell of the column, as before, I had to click on an empty, unmerged cell. Also, I wasn't familiar with case statements, so it was a great insight.
 
Upvote 0

Forum statistics

Threads
1,216,111
Messages
6,128,899
Members
449,477
Latest member
panjongshing

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