I created a combo box, cboAccount, in excel 2K using the control toolbox.
It's backstyle is transparent and it moves along with
the cursor as I go up/down cells in the same column.
To do this, I assign the target range's position to the
combo box in the Worksheet_SelectionChange event.
The problem: after making a choice from the dropdown
list, I want the combo box to remain transparent.
...Not happening!
I found myself going in circles coding
cboAccount.Value = Empty
between combo box and worksheet events. The empty white value still blocks the content of the cell underneath.
Does anyone have a good model solution?
It's backstyle is transparent and it moves along with
the cursor as I go up/down cells in the same column.
To do this, I assign the target range's position to the
combo box in the Worksheet_SelectionChange event.
The problem: after making a choice from the dropdown
list, I want the combo box to remain transparent.
...Not happening!
I found myself going in circles coding
cboAccount.Value = Empty
between combo box and worksheet events. The empty white value still blocks the content of the cell underneath.
Does anyone have a good model solution?