J
Justin
Hi,
I am populating the ComboBoxes on my UserForm with the following code:
For v = 13 To 16
UserForm1.MultiPage1.Pages(0).MultiPage2.Pages(0).ComboBox1.AddItem
Format((Worksheets("Worksheet1").Cells(v, 9).Value), "#0.000")
Next v
I want to add a second column that is not visible to the user. The
trick is that I DO NOT want to format the 2nd column in the manner that
I am formatting the present column. And I want to make the new column
the bound column.
Any suggestions?
Your help is greatly appreciated!
I am populating the ComboBoxes on my UserForm with the following code:
For v = 13 To 16
UserForm1.MultiPage1.Pages(0).MultiPage2.Pages(0).ComboBox1.AddItem
Format((Worksheets("Worksheet1").Cells(v, 9).Value), "#0.000")
Next v
I want to add a second column that is not visible to the user. The
trick is that I DO NOT want to format the 2nd column in the manner that
I am formatting the present column. And I want to make the new column
the bound column.
Any suggestions?
Your help is greatly appreciated!