I understand why it wouldn't pop up for ActiveSheet since it can return a worksheet or chart sheet so it wouldn't know which set of properties/methods to list, but if I'm explicitly referencing a worksheet within the Worksheets collection, why doesn't Intellisense get triggered?
I also want to extend this question to predefined constants. Sometimes a list of the predefined constants pops up for a property but sometimes it doesn't. Why is that? For example:
Application.Calculation= will trigger a list of the predefined constants.
Worksheets("Sheet1").PageSetup.Orientation= will NOT trigger a list of predefined constants.
Thanks for your answers, folks! :)