×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Data validation drop down menus

Data validation drop down menus

Data validation drop down menus

(OP)
I frequently use data validation to simplify data entry in my spreadsheets, but have been unable to find a way to adjust the text format of the entries.

Is there a way to increase the text size?

Thanks

RE: Data validation drop down menus

This seems to be asked more often - would be nice in a future version of XL, wouldn't it.
One thing you could do is use a ComboBox from the Controls Toolbox toolbar, instead of plain Data Validations. You can format the control to your liking.

Another "solution" I found on microsoft.public.excel:


From: Debra Dalgleish (dsd@contextures.com)
Subject: Re: Data Validation Drop Down List
Newsgroups: microsoft.public.excel.programming
Date: 2002-11-04 18:16:04 PST

You can't change the font in Data Validation dropdowns. You can use an event procedure to increase the zoom setting when the cell is selected, but don't try this if you're susceptible to motion sickness.

In the following code, cell C4 has a dropdown list. Change the cell reference from $C$4 to match your worksheet.


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
     If Target.Address = "$C$4" Then
       ActiveWindow.Zoom = 150
      Else
       ActiveWindow.Zoom = 100
     End If
End Sub

To add this code to the worksheet, right-click on the sheet tab, and choose View Code. Copy the code, and paste it onto the code module.

Marjorie wrote:
> I am creating a template with several Data Validated Drop
> Down lists and have run into a problem.  The drop down
> list appears, however, it appears in an extremely small
> font.  Once a choice is made, the font defaults back to
> the normal 11pt.  How do I change the size of drop down
> list font?

Regards,

Joerd

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources