jcleaver,

As SteveB says, you can go around it as below.

Say you have to divide 6 by 5.
6/5= 1.2

In PBP, you will get the result as (1).
Result = 1

But there is something called "remainder". You can check this in manual.

Then you can hold the remainder (2) in another variable.
Floating = 2

Then you can put them together or collect them in a single variable.
If it is only for display purposes then the job is easier.

---------------------------