Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

info analyzer, "The string in non-numeric"

Status
Not open for further replies.

darwin101

Programmer
Mar 7, 2001
156
US
could someone tell me whats wrong here. this formula works fine in Report Designer, but after successfully running and viewing it from Info Analyzer I receive the message "The string in non-numeric".
<labour hours is numeric>
StringVar X := toText ( Sum ({RO_LABOR_TA71.LABOR_HOURS}, {RO_ITEM_TA53.WIP_LOCATION}) );
StringVar H;
stringVar M;
M := Right ( X , 2 ) ;
H := Left ( X ,5 );
( toNumber ( ( Left ( toText ( H ),2 ) ) ) + ( toNumber ( ( Right ( toText ( M ), 2 ) ) ) ) * .06 ) / 10

Thanks for your time!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top