Combobox to cell navigation

  • Thread starter Thread starter suzanne
  • Start date Start date
S

suzanne

Is this possible?
I have designed several combo boxes into a spreadsheet
where info is also entered into unprogrammed cells. I
would like to be able to navigate from a combo box to a
cell without using the mouse. (Tab does not work at all.)
Any program/setting information regarding this would be
great!

Thanks,
Suzanne
 
This is because the combobox retains the "focus" (remains selected) and
can give rise to all sorts of problems.

When using worksheet controls/textboxes etc. I usually include
something like :-

ActiveSheet.Range("A1").Select

in my code which ensures that focus is returned to the worksheet and
things work as normal.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

combo box 2
Combobox filtering 2
Combobox Help 6
create dynamic comboboxes 2
referencing combobox 1
ComboBoxes and Tabbing 3
Access Combobox in Access Visible based on Checkbox 0
Combobox Dropdown method 2

Back
Top