I am getting an error on an excel macro that has been used in 2010 extensively. In Excel 2013, every other time I run the macro it gets a 438 error (Object does not support this property or method).
If I stop the code at the "WITH" statement and then force execution of the SELECT statement manually a second time i do not get the error.
Does anyone have a clue what could be causing this?
ActiveSheet.Shapes("Drop Down 28").Select
With Selection
.ListFillRange = "Constants!$J$2:$J$13"
.LinkedCell = "$E$2"
.DropDownLines = 12
.Display3DShading = False
End With
Thanks in advance for any ideas.