Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,276
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,203
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,104
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,722
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


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
Roundup Function bgcooker Excel Discussion (Misc queries) 5 February 24th 09 06:36 PM
roundup function Marge Excel Discussion (Misc queries) 3 January 15th 09 07:54 PM
ROUNDUP Function Chacky Excel Discussion (Misc queries) 1 September 5th 07 05:54 PM
Roundup Function brown_toby Excel Worksheet Functions 3 June 30th 06 06:55 PM
Roundup Function Will Excel Discussion (Misc queries) 4 February 4th 06 11:41 PM


All times are GMT +1. The time now is 12:34 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"