Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
2003/2007
Most of the time, while editing pop-up "suggestions" are available. Other times no. i.e. if I enter "myRange." alternatives may or may not appear. What causes the pop-up "suggestions" to turn off or stop popping up? How does one force it on - if currently off? Thanks EagleOne |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you declare your variables as the correct type:
Dim myRange as Range not Dim myRange as object 'or As Variant Then the VBE will help out using its intellisense. That said, I've seen it disappear and I don't know why. IIRC, it sometimes comes back on its own--or I close excel and restart it. (Not much of a helpful answer, huh?) wrote: 2003/2007 Most of the time, while editing pop-up "suggestions" are available. Other times no. i.e. if I enter "myRange." alternatives may or may not appear. What causes the pop-up "suggestions" to turn off or stop popping up? How does one force it on - if currently off? Thanks EagleOne -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ah Ha!
I did not realize that the Dim statements were being read while editing. Saying that, it makes sense - else how does VBA know what alternatives to pop-up. Another Da! moment. Thanks Dave Dave Peterson wrote: If you declare your variables as the correct type: Dim myRange as Range not Dim myRange as object 'or As Variant Then the VBE will help out using its intellisense. That said, I've seen it disappear and I don't know why. IIRC, it sometimes comes back on its own--or I close excel and restart it. (Not much of a helpful answer, huh?) wrote: 2003/2007 Most of the time, while editing pop-up "suggestions" are available. Other times no. i.e. if I enter "myRange." alternatives may or may not appear. What causes the pop-up "suggestions" to turn off or stop popping up? How does one force it on - if currently off? Thanks EagleOne |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
After following Dave's advice, if you feel Intellisense is not appearing
when it should, I find this is often due to a compile error somewhere. DebugCompile, correct any error and hopefully it comes back. NickHK wrote in message ... 2003/2007 Most of the time, while editing pop-up "suggestions" are available. Other times no. i.e. if I enter "myRange." alternatives may or may not appear. What causes the pop-up "suggestions" to turn off or stop popping up? How does one force it on - if currently off? Thanks EagleOne |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Another brain tapped! Thanks
"Nick HK" wrote: After following Dave's advice, if you feel Intellisense is not appearing when it should, I find this is often due to a compile error somewhere. DebugCompile, correct any error and hopefully it comes back. NickHK wrote in message .. . 2003/2007 Most of the time, while editing pop-up "suggestions" are available. Other times no. i.e. if I enter "myRange." alternatives may or may not appear. What causes the pop-up "suggestions" to turn off or stop popping up? How does one force it on - if currently off? Thanks EagleOne |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Turn off "CALCULATE" on bottom of Excel worksheet. near "Ready" | Excel Discussion (Misc queries) | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
how do I turn on document "editing time" found on advanced proper. | Excel Discussion (Misc queries) | |||
Turn on "total editing Time" in excel 2007 | Excel Discussion (Misc queries) | |||
"Turn "record macro" display on. | Excel Discussion (Misc queries) |