On UniVerse, the system seems to assume left-justified comparison unless you specify something different using FMT. Try this:
SELECT ... WITH EVAL"F16 * 0.9" FMT"10R" < F17
You can also specify a conversion much the same way:
SELECT ... WITH EVAL"F16 * 0.9" CONV"MD2" FMT"10R" < F17
Is there a way to assign a justification to an EVAL item other than having it use the justification of a field used in the formula? I know you can assign different formatting and conversion.
EVAL "FIELD_W_DESIRED_CONV;F16 * 0.9" < F17


Since the first 'sentence', FIELD_W_DESIRED_CONV, is not referenced in the final evaluation it doesn't affect the result, only the conversion used.

Karjala


Michael D. Ballard
[EMAIL PROTECTED]



-- u2-users mailing list [EMAIL PROTECTED] http://www.oliver.com/mailman/listinfo/u2-users

Reply via email to