Dec 17, 2003 #1 sikar Programmer Jun 4, 2003 15 US In my report i need to round off a number to the next highest integer.How can i achieve this? Thanks Sikar
In my report i need to round off a number to the next highest integer.How can i achieve this? Thanks Sikar
Dec 18, 2003 1 #2 Reebo99 MIS Jan 24, 2003 1,074 GB Local NumberVar RoundUp := 47865.455; If Int(RoundUp)/2 = RoundUp/2 then RoundUp else Truncate(Roundup) + 1; Replace the item in bold with your field... Reebo UK "Only two things are infinite, the universe and human stupidity, and I'm not sure about the former." - Albert Einstein (1879-1955) Upvote 0 Downvote
Local NumberVar RoundUp := 47865.455; If Int(RoundUp)/2 = RoundUp/2 then RoundUp else Truncate(Roundup) + 1; Replace the item in bold with your field... Reebo UK "Only two things are infinite, the universe and human stupidity, and I'm not sure about the former." - Albert Einstein (1879-1955)