Making Tabs

  • Thread starter Thread starter dyowell
  • Start date Start date
D

dyowell

I have designed a form in excel and would like to be able
to set up the form so that when I use the tab key that the
cursor tabs directly to the various fields.

I would also like to be able to make it so that the cells
that have nothing in them are not even available to click
on, and just appear as part of the background of the
form. I am pretty sure that I have seen this done before,
but I do not know how to do it.

Thanks for the help.
 
just simply right click on the userform when in development and set then set
the tab order
 
Forgot to add.

For the second part
just simply make the cells (textboxes or editboxes ?) that have nothing in
them set the visible to false
Do soemthing like the following when you load the values in

If texbox1.value ="" then
textbox1.visible = false
End if
 

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

Back
Top