D
Drummer361
Hello,
I am working on a project where I am defining the content of Combo
Boxes with the code below from the "UserForm Initialize" command:
For v = 13 To 16
ComboBox1.AddItem Worksheets("Worksheet1").Cells(v, 9).Value
Next v
This fills the data nicely in the combo boxes.
However, I am stuck with number decimal formatting. Let's say I want
all of the numbers in the ComboBox to have 3 decimal places of
accuracy, even if it lists xx.000. Does anybody have any code ideas to
work with the current code I have?
I appreciate any feedback!!
I am working on a project where I am defining the content of Combo
Boxes with the code below from the "UserForm Initialize" command:
For v = 13 To 16
ComboBox1.AddItem Worksheets("Worksheet1").Cells(v, 9).Value
Next v
This fills the data nicely in the combo boxes.
However, I am stuck with number decimal formatting. Let's say I want
all of the numbers in the ComboBox to have 3 decimal places of
accuracy, even if it lists xx.000. Does anybody have any code ideas to
work with the current code I have?
I appreciate any feedback!!