Maverick99
Board Regular
- Joined
- Feb 9, 2008
- Messages
- 108
If I have a Cell that has a drop-down Data Validation (DV) List within it, and a UserForm with a ComboBox, designed to replicate what is in that specific cell, how can I transfer those values to a UserForm ComboBox, without calling the procedures to regenerate those values?
I tried a frmUser.cbobox = .Cell.Value
It worked in part, but the Combobox showed the entire String to the User.
The purpose is if a Cell (could be any) shows "123" and the DV has a list of:
123
456
789
Then I'd like the ComboBox to show "123" and the entire list that is available in the Cell drop-down list.
Right now, replicating the procedure process of generating the cell values works fine, but it would not seem to be the most efficient way of transferring items from one known source (Cell) to another (Combobox). I'm using cells within a 2007 Table if that makes any difference.
Thanks,
Maverick
I tried a frmUser.cbobox = .Cell.Value
It worked in part, but the Combobox showed the entire String to the User.
The purpose is if a Cell (could be any) shows "123" and the DV has a list of:
123
456
789
Then I'd like the ComboBox to show "123" and the entire list that is available in the Cell drop-down list.
Right now, replicating the procedure process of generating the cell values works fine, but it would not seem to be the most efficient way of transferring items from one known source (Cell) to another (Combobox). I'm using cells within a 2007 Table if that makes any difference.
Thanks,
Maverick