Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
igor058
 
Posts: n/a
Default ROUNDUP IN 0.2 INCREMENTS

How do I roundup a calculation in 0.2 increments?
  #2   Report Post  
Ron Coderre
 
Posts: n/a
Default

If none of the values will be negative:
=CEILING(A1,0.2)

If they can be positive or negative and you truly want the value to round up
to a larger value:
=IF(A1<0,-FLOOR(ABS(A1),0.2),CEILING(A1,0.2))

Does that help?

Ron


  #3   Report Post  
KL
 
Posts: n/a
Default

Hi Igor,

Try this: =ROUNDUP(A1/0.2,0)*0.2

Privet,
KL


"igor058" wrote in message
...
How do I roundup a calculation in 0.2 increments?



  #4   Report Post  
paul
 
Posts: n/a
Default

MROUND

See Also

Returns a number rounded to the desired multiple.

If this function is not available, and returns the #NAME? error, install and
load the Analysis ToolPak add-in.

How?

On the Tools menu, click Add-Ins.
In the Add-Ins available list, select the Analysis ToolPak box, and then
click OK.
If necessary, follow the instructions in the setup program.
Syntax

MROUND(number,multiple)

Number is the value to round.

Multiple is the multiple to which you want to round number.

Remark

MROUND rounds up, away from zero, if the remainder of dividing number by
multiple is greater than or equal to half the value of multiple.

Examples


Formula Description (Result)
=MROUND(10, 3) Rounds 10 to a nearest multiple of 3 (9)
=MROUND(-10, -3) Rounds 10 to a nearest multiple of 3 (-9)
=MROUND(1.3, 0.2) Rounds 1.3 to a nearest multiple of 0.2 (1.4)
=MROUND(5, -2) Returns an error, because -2 and 5 have different signs
(#NUM!)


--
paul
remove nospam for email addy!



"igor058" wrote:

How do I roundup a calculation in 0.2 increments?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I apply the ROUNDUP formula to a range of calculated data IslandGreenHouse Excel Worksheet Functions 1 May 28th 05 10:12 PM
formula for defining axis maximum and increments Nick Turner Charts and Charting in Excel 4 March 20th 05 09:59 PM
How do I use Roundup in a logical test in excel DC Excel Worksheet Functions 3 March 9th 05 05:27 PM
roundup seconds to minute obi-akpere Excel Worksheet Functions 1 January 7th 05 12:50 PM
Roundup K.S.Warrier Excel Worksheet Functions 0 November 24th 04 10:05 AM


All times are GMT +1. The time now is 11:13 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"