You had already discovered use of range yourself another way
if you have something you want to hit certain columns on a cell
would be to use an SelectionChange Event macro. There is one disadvantage
and that is that the program will not know that you inserted rows
and rearranged rows so the program would continue to do whatever
it was originally designed to do even if to the wrong columns.
Worksheet_SelectionChange (#ws_sc)
http://www.mvps.org/dmcritchie/excel/event.htm#ws_sc
Still another way would be with protected cells but that makes
insertions, deletions, and sorting more difficult. But if it is a form
taht will always have the same cels no extra rows or colums the
cell protection might work better for you.
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages:
http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page:
http://www.mvps.org/dmcritchie/excel/search.htm
David McRitchie said:
You can select cells ahead of time then the tab will be in the
order you selected them and within groups left to right
and down.
example
select A2:F2 B2:G6 A7:B16 A2
then use the TAB key. If you make a mistake
you will likely have to start over with your preselection..
--
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages:
http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page:
http://www.mvps.org/dmcritchie/excel/search.htm
kindofblue525 said:
Is there a way to change to order (that is, something other than left to
right and top down?)