How can I suppressing numeric field into detail section?
I created a parameter flag on the form to control it because sometimes I need to show this field.
Thanks in advance.
You can control the location of the object/field horizontally by right clicking on it->size and position and entering a conditional formula in the x+2 box for the "X" position. You have to use twips to define the distance from the field's original position, with 1440 twips = an inch. You could move the Description field to the left and the second field to the right based on formulas. Assuming the description field starts in position 1 inch in (its starting position), then you could use a formula like this:
if {table.field} = <your criterion> then
-1440 else
0
For the second object, you could use the following to move it an inch and a half to the right of its starting position:
if {table.field} = <your criterion> then
2160 else
0
So you can change the positions of the objects, but you can't change the width per se.
PS. Another approach would be to add the fields/labels in two separate sections, e.g., PH_a and PH_b and Detail_a and Detail_b. You would position the fields you want to use as you wish and then conditionally suppress the entire sections, rather than handling the positions per field/object.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.