Stickybeak Posted November 30, 2010 Posted November 30, 2010 I have a drop down list that is showing me a code and the full name - the code goes in the active field and a look up puts the full name in another field. Because the codes are different lengths (they're actually nicknames) the drop down is not nicely and neatly aligned where the second value is listed. Is there any way of altering this by formatting the drop down list (or otherwise)?
Vaughan Posted November 30, 2010 Posted November 30, 2010 No. However you can change the value list to only display the second field.
Matthew F Posted November 30, 2010 Posted November 30, 2010 You could create a calculation which truncates or adds spaces onto the 'code' to make it a fixed length. For example, to make the code 6 characters long use: NewCode = Left ( Code & " " ; 6) Then use NewCode in your drop-down list instead of Code, and apply a fixed width font, like Courier.
Stickybeak Posted November 30, 2010 Author Posted November 30, 2010 Excellent solution - although the font makes me feel like a failure
Matthew F Posted November 30, 2010 Posted November 30, 2010 Oh well. Maybe life won't be so bad with Verdana or Menlo.
Matthew F Posted December 1, 2010 Posted December 1, 2010 Oops. I meant Monaco and Menlo. They are fixed width according to /Applications/Font Book.
Recommended Posts
This topic is 5106 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now