On one PC I have the following code fails and raises the '50290' run-time error. The model range is a data validation dropdown list on the same worksheet. If I remove the data validation, it works. What is causing the list to hang the process on this one PC? This script previously worked for years without issue, and still works on other devices.
I found this unmarked answer on stackoverflow which seems to be in-line with what I'm experiencing, as Application.Ready throws false on the worksheet change, despite being the only script running, but waiting for Application.Ready to flip leads to what seemingly is an infinite loop. Not sure what else is slowing things down in the background. Anybody have any ideas?
I found this unmarked answer on stackoverflow which seems to be in-line with what I'm experiencing, as Application.Ready throws false on the worksheet change, despite being the only script running, but waiting for Application.Ready to flip leads to what seemingly is an infinite loop. Not sure what else is slowing things down in the background. Anybody have any ideas?
VBA Code:
Sub Worksheet_Change(ByVal Target As Range)
Dim model As Range: Set model = Range("G19")
If Not Intersect(Target, model) Is Nothing Then
Debug.Print "model"
End If
End Sub