A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

how do i use the roundup function



 
 
Thread Tools Display Modes
  #1  
Old June 10th, 2009, 01:04 PM posted to microsoft.public.excel.worksheet.functions
Leprechan
external usenet poster
 
Posts: 2
Default how do i use the roundup function

I have prepared salary scales using simple formulas where the calculations
are based on a % increase. I would like the answers to be rounded up eg:
$27.997 to be $28.00. I am unclear on how to apply the roundup function ( I
believe that is the one I s/b using..) Do I use roundup in the initial
formula & then copy across the page? Can someone pls provide me with an
example.

Thanks
Debbie
  #2  
Old June 10th, 2009, 01:10 PM posted to microsoft.public.excel.worksheet.functions
eduardo
external usenet poster
 
Posts: 2,131
Default how do i use the roundup function

Hi,
use
=roundup(your formula,2)
i.e =roundup(A1/A3,2)

"Leprechan" wrote:

I have prepared salary scales using simple formulas where the calculations
are based on a % increase. I would like the answers to be rounded up eg:
$27.997 to be $28.00. I am unclear on how to apply the roundup function ( I
believe that is the one I s/b using..) Do I use roundup in the initial
formula & then copy across the page? Can someone pls provide me with an
example.

Thanks
Debbie

  #3  
Old June 10th, 2009, 01:13 PM posted to microsoft.public.excel.worksheet.functions
Mike H
external usenet poster
 
Posts: 8,419
Default how do i use the roundup function

Hi,

You can round up the result of the increase using

=ROUNDUP(A1,0)

or do it all in 1 go

=ROUNDUP(A1*1.03,0)

Mike



"Leprechan" wrote:

I have prepared salary scales using simple formulas where the calculations
are based on a % increase. I would like the answers to be rounded up eg:
$27.997 to be $28.00. I am unclear on how to apply the roundup function ( I
believe that is the one I s/b using..) Do I use roundup in the initial
formula & then copy across the page? Can someone pls provide me with an
example.

Thanks
Debbie

  #4  
Old June 10th, 2009, 01:17 PM posted to microsoft.public.excel.worksheet.functions
JLatham
external usenet poster
 
Posts: 1,896
Default how do i use the roundup function

ROUNDUP() needs 2 pieces of information: the value to be rounded and the
number of digits to round to. The value to be rounded can be a calculated
value. So...
Lets say you have a starting pay rate in A1 such as 28.50 and you want to
calculate what a 3% raise would bring it to in B1. In B1 you'd put this
formula:
=ROUNDUP(A1 * 1.03,2)
which should display 29.36. If you fill the formula to the right, into
columns C and D, you'd see 30.25 in C1 (the 29.36 now in B1 multiplied by
1.03) and 31.16 in D1, which is the 30.25 in C1 multiplied by 1.03 again.

Whether to use ROUNDUP() or ROUND() depends on how you want to treat
portions of your results beyond the pennies: ROUNDUP() will always round up,
so a result of 12.3322 would be rounded to 12.34, while ROUND() follows the
rules we learned in school, and 12.3322 would round down to 12.33 while
12.3351 would round up to 12.34.

Hope this helps.

"Leprechan" wrote:

I have prepared salary scales using simple formulas where the calculations
are based on a % increase. I would like the answers to be rounded up eg:
$27.997 to be $28.00. I am unclear on how to apply the roundup function ( I
believe that is the one I s/b using..) Do I use roundup in the initial
formula & then copy across the page? Can someone pls provide me with an
example.

Thanks
Debbie

  #5  
Old June 10th, 2009, 01:18 PM posted to microsoft.public.excel.worksheet.functions
willemeulen[_39_]
external usenet poster
 
Posts: 1
Default how do i use the roundup function


Roundup works up to 1 decimal, if you want let say round it up to the 10
(11 becomes 20, 25 becomes 30 etc you could use the CEILING FUNCTION

Cheers

W


--
willemeulen

Blink1 *Willem van der Meulen* BSc Soil & Water Eng (Netherlands)
------------------------------------------------------------------------
willemeulen's Profile: http://www.thecodecage.com/forumz/member.php?userid=285
View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=105210

  #6  
Old June 10th, 2009, 01:19 PM posted to microsoft.public.excel.worksheet.functions
Bernard Liengme[_2_]
external usenet poster
 
Posts: 1,027
Default how do i use the roundup function

Debbie
You example is not necessarily round UP; 27.997 rounds to 28
A normal rounding of 27.3 would be 27 while a round UP would be 28

I will assume you do want to round up and I will use the ROUNDUP function.
If you want just simple rounding, change it to ROUND

Suppose A1 holds the current salary and you want a 12.5% increase rounded up
to the nearest dollar:
In B1 use this formula =ROUNDUP(A1*1.125,0) or if you prefer
=ROUNDUP(A1+A1*12.5%,0)
The zero here tells Excel to roundup to an integer (no decimals / no cents
in this case)

If A2 has the next person's salary just copy the formula down the column by
dragging or double clicking B1's fill handle (small solid square in the
lower right corner when the cell is selected)
If your data goes across the worksheet you can bout the formula in the cell
below and drag across the row.

best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"Leprechan" wrote in message
...
I have prepared salary scales using simple formulas where the calculations
are based on a % increase. I would like the answers to be rounded up eg:
$27.997 to be $28.00. I am unclear on how to apply the roundup function
( I
believe that is the one I s/b using..) Do I use roundup in the initial
formula & then copy across the page? Can someone pls provide me with an
example.

Thanks
Debbie



  #7  
Old June 10th, 2009, 01:55 PM posted to microsoft.public.excel.worksheet.functions
David Biddulph
external usenet poster
 
Posts: 8,714
Default how do i use the roundup function

If you can't use Excel help for the ROUNDUP function, you may need to
reinstall Excel..
--
David Biddulph

"Leprechan" wrote in message
...
I have prepared salary scales using simple formulas where the calculations
are based on a % increase. I would like the answers to be rounded up eg:
$27.997 to be $28.00. I am unclear on how to apply the roundup function
( I
believe that is the one I s/b using..) Do I use roundup in the initial
formula & then copy across the page? Can someone pls provide me with an
example.

Thanks
Debbie



  #8  
Old June 10th, 2009, 02:17 PM posted to microsoft.public.excel.worksheet.functions
Leprechan
external usenet poster
 
Posts: 2
Default how do i use the roundup function

Thanks for your help.
Debbie

"JLatham" wrote:

ROUNDUP() needs 2 pieces of information: the value to be rounded and the
number of digits to round to. The value to be rounded can be a calculated
value. So...
Lets say you have a starting pay rate in A1 such as 28.50 and you want to
calculate what a 3% raise would bring it to in B1. In B1 you'd put this
formula:
=ROUNDUP(A1 * 1.03,2)
which should display 29.36. If you fill the formula to the right, into
columns C and D, you'd see 30.25 in C1 (the 29.36 now in B1 multiplied by
1.03) and 31.16 in D1, which is the 30.25 in C1 multiplied by 1.03 again.

Whether to use ROUNDUP() or ROUND() depends on how you want to treat
portions of your results beyond the pennies: ROUNDUP() will always round up,
so a result of 12.3322 would be rounded to 12.34, while ROUND() follows the
rules we learned in school, and 12.3322 would round down to 12.33 while
12.3351 would round up to 12.34.

Hope this helps.

"Leprechan" wrote:

I have prepared salary scales using simple formulas where the calculations
are based on a % increase. I would like the answers to be rounded up eg:
$27.997 to be $28.00. I am unclear on how to apply the roundup function ( I
believe that is the one I s/b using..) Do I use roundup in the initial
formula & then copy across the page? Can someone pls provide me with an
example.

Thanks
Debbie

  #9  
Old June 10th, 2009, 02:30 PM posted to microsoft.public.excel.worksheet.functions
Luke M
external usenet poster
 
Posts: 2,672
Default how do i use the roundup function

You can actually use negative numbers to indicate how many places left of
decimal to round.
E.g.,

=ROUNDUP(11,-1)
evaluates to 20.

CEILING is nice for when you need to roundup to a common multiple of a
number other than 10.
E.g.
=CEILING(11,5)
evaluates to 15.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"willemeulen" wrote:


Roundup works up to 1 decimal, if you want let say round it up to the 10
(11 becomes 20, 25 becomes 30 etc you could use the CEILING FUNCTION

Cheers

W


--
willemeulen

Blink1 *Willem van der Meulen* BSc Soil & Water Eng (Netherlands)
------------------------------------------------------------------------
willemeulen's Profile: http://www.thecodecage.com/forumz/member.php?userid=285
View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=105210


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:39 PM.


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