Focal Point
Printing of less than symbol in reprot heading

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/6701038331

February 02, 2005, 05:17 AM
thangam
Printing of less than symbol in reprot heading
I am trying to print the following in report heading.

"Test Date < Than Today "

Error is displayed Field name "Than" does not exit.

It is searching <Than field name in the master file as Field Identification character is "<"

How do I avoid this error?
February 02, 2005, 09:22 AM
j.gross
Either avoid the "less" symbol (spell it out),

or put it in a defined variable
LESS/A1='<';
and change
"... < than ..."
to
"... <LESS than ..."

or put the whole legend in a variable
LEGEND/A40=' ... ';
"<LEGEND"
February 02, 2005, 12:22 PM
Leah
Unless it's a necessary evil to use the '<' in the heading, why not 'LT' or spell it out.

I have had to face that one before and decided to go with the LT rather than fuss with variables.

Hope everyone is staying warm this winter.
February 02, 2005, 09:33 PM
<Zushi Hitoshi>
Hi! from Japan.
try in the following way.

"Test Date < | Than Today "
February 02, 2005, 10:11 PM
susannah
or
LEFT/A1=HEXBYT(60,'A1');