size of font in combo box

organicjan

New Member
Joined
Jul 23, 2002
Messages
34
I have set up a combo box, but the data is very small. How can I change the size of the data that appears in the combo box?
Thanks!
 
Hi guys.

Thanks for your help, but it still is not working. After entering the stuff in the properties and closing those windows, the combo box still does not work. When I try to mouse over to the down arrow to get the list, I continue to get those Move arrows and I cannot use the drop down list.

I can send to you if you want to see.

Thanks,
Jan
 
Upvote 0

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Thanks! I knew it had to be something simple! Now, my values are dates, but when I choose one it shows as a number...I have tried formating the cell reference, but it won't format to date.
 
Upvote 0
In design mode right click the ComboBox and choose View Code. Add something like this:

Code:
Private Sub ComboBox1_Change()
    ComboBox1.Value = Format(ComboBox1.Value, "dd/mm/yy")
End Sub

Press Alt+F11 to return to your worksheet, then exit design mode and try it out.
 
Upvote 0

Forum statistics

Threads
1,215,632
Messages
6,125,909
Members
449,274
Latest member
mrcsbenson

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top