Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel's IntelliSense

Status
Not open for further replies.

Andrzejek

Programmer
Jan 10, 2006
8,502
US
The IntelliSense is Excel works sometimes, and doesn't other times.

This works every time:

IS_2_oro21i.png


But when I type this, I get some help from Excel:

IS_1_j8yhkn.png


I keep typing, but then [tt]cells(1, 1).[/tt] dosn't give me any hints after the period
when I want to have: [tt]Cells(1, 1).[blue]Value[/blue][/tt] for example

The same when I want to use [tt]UsedRange[/tt] of the [tt]ActiveSheet[/tt]
So I type:
[tt]activesheet.[/tt] - no help from IntelliSense
[tt]activesheet.usedrange.[/tt] - no help from IntelliSense
[tt]activesheet.usedrange.rows[/tt] - no help from IntelliSense
[tt]activesheet.usedrange.rows.count[/tt]

but then, at the end , I do get:
[tt]ActiveSheet.UsedRange.Rows.Count[/tt]
with all capitalized letters and it works OK

What am I missing... [ponder]

---- Andy

"Hmm...they have the internet on computers now"--Homer Simpson
 
It seems that after Cells(...) intellisense stops at hidden _Default property of Range:
cells_wcsiui.png


ActiveSheet can be other than Worksheet type, even after UsedRange VBE does not recognize context.

combo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top