JariV Posted June 17, 2010 Posted June 17, 2010 Hi, Is there a simple way to round up numbers to next x,0, x,25, x,50 or x,75? For example, 16,58 would become 16,75. Thanks in advance, Jari V.
Peter (duksis3) Posted June 17, 2010 Posted June 17, 2010 Hi, The first that comes in mind is: N-number to be rounded UP You can use Case or If. In general formula is (Case): Case [N-Int(N)>=0 and N-Int(N)<=0,25; Int(N)+0,25; N-Int(N)>0,25 and N-Int(N)<=0,5; Int(N)+0,5; N-Int(N)>0,5 and N-Int(N)<=0,75; Int(N)+0,75; Int(N)+1]
Recommended Posts
This topic is 5331 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now