Call Macro from module in worksheet change event based on ListBox selection

spgexcel

New Member
Joined
Mar 16, 2016
Messages
23
Office Version
  1. 365
Platform
  1. Windows
Hi
I have a form control ListBox with some options in it. It is linked to A1 cell.
I have following code in sheet code. I want the autofit code triggered each time there is change in A1 cell

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)

If Not Intersect(Target, Range("A1")) Is Nothing Then

Call autofit

End If

End Sub
I want to call Macro called "Autofit" from module which is as follows:

VBA Code:
Sub autofit()

Worksheets("Launch Dates").Range("I8:I36").Columns.autofit

End Sub

But nothing happens when the cell value changes.
Am I doing anything wrong?

Thanks in advance!

Sumant
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).

The code you've provided should work as expected, assuming the macro "Autofit" and the code that calls it are in the correct location.

Here's a few things you can check to troubleshoot:
  • Make sure that the name of the macro is spelled correctly, as the code will not run if the macro cannot be found.
  • Ensure that the sheet where the cell is located is active when a change occurs. If the sheet is not active, the Worksheet_Change event will not fire.
  • Make sure that the range in the Autofit macro is correct, "Worksheets("Launch Dates").Range("I8:I36").Columns.autofit"
  • Also check, if the sheet's name "Launch Dates" is correctly spelled
  • Add some debugging code, like MsgBox("Change detected in A1!") inside the if condition in "Worksheet_Change" to see if the event is firing at all or not.
If you're still having trouble after checking these things, please let me know the error message or if no error message, the outcome you are getting.
 
Upvote 0

The code you've provided should work as expected, assuming the macro "Autofit" and the code that calls it are in the correct location.

Here's a few things you can check to troubleshoot:
  • Make sure that the name of the macro is spelled correctly, as the code will not run if the macro cannot be found.
  • Ensure that the sheet where the cell is located is active when a change occurs. If the sheet is not active, the Worksheet_Change event will not fire.
  • Make sure that the range in the Autofit macro is correct, "Worksheets("Launch Dates").Range("I8:I36").Columns.autofit"
  • Also check, if the sheet's name "Launch Dates" is correctly spelled
  • Add some debugging code, like MsgBox("Change detected in A1!") inside the if condition in "Worksheet_Change" to see if the event is firing at all or not.
If you're still having trouble after checking these things, please let me know the error message or if no error message, the outcome you are getting.
Hi aaewalsh, I checked all points as you mentioned, All good.
In fact Autofit macro runs perfectly if I run it individually.
However, I added the Msgbox debugging code, it did nothing. No message box appears. Weird.
Here is that code I added:

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)

If Not Intersect(Target, Range("A1")) Is Nothing Then

MsgBox ("Change detected in A1")

Call Autofit

End If

End Sub
 
Upvote 0
Could you perhaps send the file I can review it and debug
 
Upvote 0
This works for me.
In Sheet Module
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1")) Is Nothing Then
Call Fit_Auto
End If
End Sub

In regular module
Code:
Sub Fit_Auto()
    Worksheets("Launch Dates").Columns(9).Autofit
End Sub

Sorry. Just noticed that you work with a ListBox. Won't work.
 
Last edited:
Upvote 0
Right click on the ListBox and choose "Asign Macro". Select "Fit_Auto"

Do away with the "Worksheet_Change" code.
 
Upvote 0
Solution
Thank you for the update and a great day to you also.
Good Luck
 
Upvote 0

Forum statistics

Threads
1,215,731
Messages
6,126,537
Members
449,316
Latest member
sravya

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