Newbies grover970 Posted June 28, 2012 Newbies Posted June 28, 2012 I have a simple conditional value list(which works fine) that lists some dynamic classifications. However if none of the classifications listed are appropriate I would like the user to be able to select "None". Is there a way to add a static value to this dynamic list?
The Big Bear Posted July 18, 2012 Posted July 18, 2012 why don't yuo just add another classification and name is NONE. what way it would be in the list
eos Posted July 18, 2012 Posted July 18, 2012 In FM12, you can define a calc field, type text, as ExecuteSQL ( "SELECT myField FROM myTO"; "" ; "¶" ) & "¶None" and use the field for creating the value list.
comment Posted July 18, 2012 Posted July 18, 2012 I have a simple conditional value list(which works fine) that lists some dynamic classifications. However if none of the classifications listed are appropriate I would like the user to be able to select "None". Is there a way to add a static value to this dynamic list? You could define a calculation field (result is Text) = List ( Classification ; "None" ) and use this field as the basis for your value list instead of the Classification field. In FM12, you can define a calc field, type text, as and use the field for creating the value list. ExecuteSQL ( "SELECT myField FROM myTO"; "" ; "¶" ) & "¶None" And when would this field be evaluated?
eos Posted July 18, 2012 Posted July 18, 2012 And when would this field be evaluated? EDIT_EDIT: OK, maybe it really is calculated a bit too late …
Recommended Posts
This topic is 4511 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