June 28, 201213 yr Newbies 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?
July 18, 201213 yr why don't yuo just add another classification and name is NONE. what way it would be in the list
July 18, 201213 yr 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.
July 18, 201213 yr 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?
July 18, 201213 yr And when would this field be evaluated? EDIT_EDIT: OK, maybe it really is calculated a bit too late …
Create an account or sign in to comment