It looks like you're new here. Sign in or register to get started.
Name DataType Subtype Length X Decimal Y Text 2 I Decimal Z INTEGER X := 2368.12; //the dot (.) could also be a comma (,). It's depend. on your local language settings Y := copystr(format(x),Strpos(format(x),'.')+1,2); //12 I := x mod 1; //0.12 Z := x mod 1 * 100; //12
Answers
Here two, not tested, solutions
Regards