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.
-LB