Autocomplete in VBA turned off

B

Bernie Deitrick

Selection doesn't have an autocomplete list, since the selection can be a
range object, a chart object, a commandbutton, a drawing object, etc.

Procedures are part of some other object, like Application, so you type
Application. to get an autolisting of procedures and properties for
Application.

HTH,
Bernie
MS Excel MVP
 
B

Bernie Deitrick

Using the codename for the sheet will:

Sheet1.Range("L18").

or just using the range will:

Range("L18").

Any time there is any ambiguity or doubt on Excel's part, it clams up and is
unhelpful....

HTH,
Bernie
MS Excel MVP
 
G

Guest

Okay. I've been using cells a lot more than range recently. I thought Range
listed properies and methods. I don;t see why it doesn't when youre even more
specific, like listing a sheet first.
[email protected]
 
Top