mattradtke
New Member
- Joined
- Mar 27, 2018
- Messages
- 3
I am running Excel for Mac version 16.11.1 (180319) on macOS High Sierra version 10.13.3. I have written a simple test macro that only does this:
When I run the RngTest macro, the modal dialog box appears as expected. If I select one cell in my worksheet, that cell's address appears in the edit control, also as expected. However, if I use the mouse to click one cell and then begin to drag the mouse to additional cells, Excel crashes.
Any help would be much appreciated. Rolling back to a different version of Excel or macOS is not really an option, as the application that I am building will be used by hundreds of people around the world.
Thanks,
Matt
Code:
[INDENT]Sub RngTest()
Dim rng As Range
On Error Resume Next
Set rng = Application.InputBox(prompt:="Title", Type:=8)
End Sub[/INDENT]
When I run the RngTest macro, the modal dialog box appears as expected. If I select one cell in my worksheet, that cell's address appears in the edit control, also as expected. However, if I use the mouse to click one cell and then begin to drag the mouse to additional cells, Excel crashes.
Any help would be much appreciated. Rolling back to a different version of Excel or macOS is not really an option, as the application that I am building will be used by hundreds of people around the world.
Thanks,
Matt