numbers ending in only .0
Posted: Tue Oct 13, 2009 10:26 pm
I have this on a card:
It works like it should except the numbers end like $1.8, $1.4, etc. There is no zero. i.e.- $1.80, $1.40
Is there a setting for numbers I'm overlooking or do I need to code something for this??
Code: Select all
on mouseUp
put field "FeetWide" into FeetWide
put field "FeetLong" into FeetLong
put FeetWide*FeetLong into TotalSqFt
put TotalSqFt into field "TotalSqFt"
Put TotalSqFt * ChargePerSqFt / 1000 into Field "TotalToCharge"
end mouseUp
Is there a setting for numbers I'm overlooking or do I need to code something for this??