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