I am getting this error "Unrecognized characters found after the number Field" ---Please help

Hi All,

I have an editable number field and a computed number field…When I enter a nu7mber say 100 and hit enter , I get the above message "Unrecognized characters found after the number field

My Computed field (has a code using the above editable field and I am using @isNumber(Fieldname ) and doing some calculations …here is the code fr the computed field and I get the error if I click F9 key to refresh— @Error (number expected ) in this computed field

Here is the code fr the computed number field

costx := cst_0 ;

pricex := pr0_0 ;

@If(costx = “” | pricex = “”;@Return(“”);@Success);

price := @If(@IsNumber(pricex);pricex ;@TextToNumber(pricex)) ;

(price - costx) / price

How can i get rid of empty spaces after the number field , carriage returns, tabs etc after the number field.

Please help

Thanks in advance,

ac ac

Subject: I am getting this error “Unrecognized characters found after the number Field” —Please help

How can i get rid of empty spaces after the number field , carriage returns, tabs etc after the number field?

@Trim

Subject: RE: I am getting this error “Unrecognized characters found after the number Field” —Please help

If you use the “native” style fields, there’s an option to not allow multi-line input.

Subject: RE: I am getting this error “Unrecognized characters found after the number Field” —Please help

Thanks Andre for all U’r help,

It works beautifully if I change Notes style to Native style

Regards,

ac ac