PSS ID Number: 137920
Article Last Modified on 10/23/2000
Instead of using the shortcut menu to get the Pick List, you can press the Alt and Down Arrow keys. This will bring up a list of all the unique items in the active column, and you can choose the item you want from this list.
Turn off Data Entry Mode. There are two ways to turn off Data Entry Mode in Microsoft Excel, and the method you use will depend on the setting of the DataEntryMode property. If the DataEntryMode property is set to xlOn, then you can exit Data Entry Mode by pressing the Escape key. If the DateEntryMode property is set to xlStrict, then you can only exit Data Entry Mode by running another macro that sets the property to xlOff.
Sub Data_Entry_Test()
'The DataEntryMode property can be set to three values:
'xlOn will restrict you to working in the cells that
'are selected before the macro is run. You can press
'the escape key to turn off DataEntryMode.
'xlOff will turn DataEntryMode off.
'xlStrict will also restrict you to working in the cells
'that are selected before the macro is run, but you cannot
'turn off DataEntryMode by pressing the escape key. If the
'DataEntryMode property is set to xlStrict, you need to run
'another macro that sets it to xlOff in order to turn of
'Data Entry Mode.
Application.DataEntryMode = xlOn
End Sub
Additional query words: picklist gray grey greyed grayed out
Keywords: KB137920
Technology: kbExcel95 kbExcel95Search kbExcelSearch kbExcelWinSearch