sorting checkboxes
Hi again rbraxton,
Okay, it sounds like you don't really want to sort the checkboxes themselves, but rather to sort on, say, column A while checkboxes that are "in" column D stay with the rows as they are re-arranged by the sort. I put "in" in quotes because checkboxes can't really reside in cells, but are objects that can only reside on top of a worksheet.
If what I described is what you want to do, the checkboxes will "sort" with the rows if you include the cells underneath the checkboxes in the range to be sorted. This is true whether you sort manually or via VBA macro. So in the example above where the data are in cells A1:D12, simply select cells A1:D12, then do the sort on column A. If the checkboxes are ActiveX checkboxes (i.e., from the Controls toobar) then the Placement property must be set to 2 (which is the default) for them to sort with the underlying cells. If the checkboxes are from the Forms toolbar they must be formatted using the format control Properties tab for the "Move but don't size with cells" option, but this is also the default.