ryandonovan22
New Member
- Joined
- Sep 17, 2015
- Messages
- 36
Hello,
I am trying to get my 'TidyAll' Macro to run when a cell is changed and I am using the following code
It is working, although for some reason the macro being called up runs 3 times then stops?
What am I doing wrong?
FYI - The Macro is stored in a module.
Thanks,
Ryan.
I am trying to get my 'TidyAll' Macro to run when a cell is changed and I am using the following code
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Target.Worksheet.Range("H5")) Is Nothing Then TidyAll
End Sub
It is working, although for some reason the macro being called up runs 3 times then stops?
What am I doing wrong?
FYI - The Macro is stored in a module.
Thanks,
Ryan.
Last edited: