In a message dated 98-03-12 15:56:25 EST, you write: << > In a message dated 98-03-11 18:17:17 EST, you write: > > << how do you use int so it goes up? > like 1.2 returns 2. >> > > Try, int(number+.5,0 close, but no cigar. that would still display 1. you need to use int(num+1) or round(num+.5,0) >> that would round up if number is greater than or equal to 1.5.