Rydog Posted January 3, 2006 Posted January 3, 2006 Hi, I'm new to this group and I was wondering if there is a way in FM 7 to do this: See we use FM for our daily schedule of jobs we have to do (prepress department). One of the columns in the schedule is for "Technician". Whenever you click on that field for a given job, a list pops up of initials of all of our technicians. Each set of initials is in black. My question is, is there a way to have a default color assigned to each pair of these initials or are we stuck using the default of black. Thanks in advance!
Zero Tolerence Posted January 3, 2006 Posted January 3, 2006 In the dropdown, they all have to be one color, however, once you choose something, you can make it whatever color you want depending on who they chose from the list.
Rydog Posted January 3, 2006 Author Posted January 3, 2006 You say the drop down has to be all black, but is there a way to have a certain selection change from black to it's color once selected without having to change the color each time?
mr_vodka Posted January 3, 2006 Posted January 3, 2006 As Zero said, the popup list itself can not change, but once it is selected you can use the option of a calculated value text field (not to be confused with calculation field) to achieve the results. Make sure that you have "Do not replace exisitng value if any..." unchecked. Case ( Technician = "Bob"; TextColor ( Technician ; RGB ( 255 ; 0; 0 ) ); Technician = "John"; TextColor ( Technician ; RGB ( 0 ; 255; 0 ) ); Technician = "Will"; TextColor ( Technician ; RGB ( 0 ; 0; 255 ) ); TextColor ( Technician ; RGB ( 0 ; 0; 0 ) ) )
mr_vodka Posted January 4, 2006 Posted January 4, 2006 When you are defining your text field, there is an option for calculated value. Once you select on it, you can enter the code.
Lee Smith Posted January 4, 2006 Posted January 4, 2006 (edited) Hi Vodka, This is clear to me, but I'm not sure that Rydog knows what you mean. When you are defining your text field, there is an option for calculated value. Once you select on it, you can enter the code. Steps are: Go into Define Fields Select your field Click on Options Select Calculated Value [color:blue] Enter your Calculation Select Okay Button Deselect the "Do not replace existing value (if any)" Okay Button, Okay Button HTH Lee Edited January 4, 2006 by Guest
Recommended Posts
This topic is 6961 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