>> This is kind of related but how do you use int so it goes up? >> like 1.2 returns 2. > > :Int (x+1) I take that back. That would give 2 for 1. Add .9999 or something like that so that 1.2 = 2.1999, giving 2. 1 = 1.9999, giving 1. If you want int to work like round( ,0), add 0.5.