#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Neo1
 
Posts: n/a
Default Rounding Off!?


Hello, is there a way to round of a number say something like this:

13.2 to 14 instead of going to 13...how can I do this?

Thanks
From John


--
Neo1
------------------------------------------------------------------------
Neo1's Profile: http://www.excelforum.com/member.php...o&userid=30329
View this thread: http://www.excelforum.com/showthread...hreadid=520843

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Chip Pearson
 
Posts: n/a
Default Rounding Off!?

Use the ROUNDUP function. E.g.,

=ROUNDUP(A1,0)

ROUNDUP is part of the Analysis Tool Pak add-in, so you must have
this loaded to use the function. Go to the Tools menu, choose
Add-Ins, and put a check next to Analysis Tool Pak.

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Neo1" wrote
in message
...

Hello, is there a way to round of a number say something like
this:

13.2 to 14 instead of going to 13...how can I do this?

Thanks
From John


--
Neo1
------------------------------------------------------------------------
Neo1's Profile:
http://www.excelforum.com/member.php...o&userid=30329
View this thread:
http://www.excelforum.com/showthread...hreadid=520843



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Elkar
 
Posts: n/a
Default Rounding Off!?

Acutally, ROUNDUP is not part of the Analysis ToolPak. Perhaps you're
thinking of MROUND?

"Chip Pearson" wrote:

Use the ROUNDUP function. E.g.,

=ROUNDUP(A1,0)

ROUNDUP is part of the Analysis Tool Pak add-in, so you must have
this loaded to use the function. Go to the Tools menu, choose
Add-Ins, and put a check next to Analysis Tool Pak.

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Neo1" wrote
in message
...

Hello, is there a way to round of a number say something like
this:

13.2 to 14 instead of going to 13...how can I do this?

Thanks
From John


--
Neo1
------------------------------------------------------------------------
Neo1's Profile:
http://www.excelforum.com/member.php...o&userid=30329
View this thread:
http://www.excelforum.com/showthread...hreadid=520843




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Chip Pearson
 
Posts: n/a
Default Rounding Off!?

Actually, ROUNDUP is not part of the Analysis ToolPak. Perhaps
you're
thinking of MROUND?


Yeah, you're right. My mistake.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Elkar" wrote in message
...
Acutally, ROUNDUP is not part of the Analysis ToolPak. Perhaps
you're
thinking of MROUND?

"Chip Pearson" wrote:

Use the ROUNDUP function. E.g.,

=ROUNDUP(A1,0)

ROUNDUP is part of the Analysis Tool Pak add-in, so you must
have
this loaded to use the function. Go to the Tools menu, choose
Add-Ins, and put a check next to Analysis Tool Pak.

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Neo1"
wrote
in message
...

Hello, is there a way to round of a number say something
like
this:

13.2 to 14 instead of going to 13...how can I do this?

Thanks
From John


--
Neo1
------------------------------------------------------------------------
Neo1's Profile:
http://www.excelforum.com/member.php...o&userid=30329
View this thread:
http://www.excelforum.com/showthread...hreadid=520843






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Neo1
 
Posts: n/a
Default Rounding Off!?


The thing is i want to round up the number once it has been divided for
example:

=A1/B1

I want to put that formula on C1 and the number I get there i want to
round it up to the upper number which means if i get say 13.2 i want it
to go to 14 not to 13 for example

From John
Thanks


--
Neo1
------------------------------------------------------------------------
Neo1's Profile: http://www.excelforum.com/member.php...o&userid=30329
View this thread: http://www.excelforum.com/showthread...hreadid=520843



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Trevor Shuttleworth
 
Posts: n/a
Default Rounding Off!?

OK

=ROUNDUP(A1/B1,0)

Regards

Trevor


"Neo1" wrote in message
...

The thing is i want to round up the number once it has been divided for
example:

=A1/B1

I want to put that formula on C1 and the number I get there i want to
round it up to the upper number which means if i get say 13.2 i want it
to go to 14 not to 13 for example

From John
Thanks


--
Neo1
------------------------------------------------------------------------
Neo1's Profile:
http://www.excelforum.com/member.php...o&userid=30329
View this thread: http://www.excelforum.com/showthread...hreadid=520843



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gilles Desjardins
 
Posts: n/a
Default Rounding Off!?

Hi John,

=ROUNDUP(A1,0)

Gilles

"Neo1" wrote in message
...

Hello, is there a way to round of a number say something like this:

13.2 to 14 instead of going to 13...how can I do this?

Thanks
From John


--
Neo1
------------------------------------------------------------------------
Neo1's Profile:
http://www.excelforum.com/member.php...o&userid=30329
View this thread: http://www.excelforum.com/showthread...hreadid=520843



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Trevor Shuttleworth
 
Posts: n/a
Default Rounding Off!?

=ROUNDUP(A12,0)

Regards

Trevor


"Neo1" wrote in message
...

Hello, is there a way to round of a number say something like this:

13.2 to 14 instead of going to 13...how can I do this?

Thanks
From John


--
Neo1
------------------------------------------------------------------------
Neo1's Profile:
http://www.excelforum.com/member.php...o&userid=30329
View this thread: http://www.excelforum.com/showthread...hreadid=520843



  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bernard Liengme
 
Posts: n/a
Default Rounding Off!?

Number 13.2 in A1, then both of these give 14
(a) =ROUNDUP(A1,0)
(b) =CEILING(A1,1)
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Neo1" wrote in message
...

Hello, is there a way to round of a number say something like this:

13.2 to 14 instead of going to 13...how can I do this?

Thanks
From John


--
Neo1
------------------------------------------------------------------------
Neo1's Profile:
http://www.excelforum.com/member.php...o&userid=30329
View this thread: http://www.excelforum.com/showthread...hreadid=520843



  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Elkar
 
Posts: n/a
Default Rounding Off!?

You can use the ROUNDUP() function:

=ROUNDUP(A1,0)

Where A1 is your value or formula and the 0 is how many decimal places to
round to.

HTH,
Elkar


"Neo1" wrote:


Hello, is there a way to round of a number say something like this:

13.2 to 14 instead of going to 13...how can I do this?

Thanks
From John


--
Neo1
------------------------------------------------------------------------
Neo1's Profile: http://www.excelforum.com/member.php...o&userid=30329
View this thread: http://www.excelforum.com/showthread...hreadid=520843




  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
davesexcel
 
Posts: n/a
Default Rounding Off!?


=roundup(c10,0)


--
davesexcel
------------------------------------------------------------------------
davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708
View this thread: http://www.excelforum.com/showthread...hreadid=520843

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
Unwanted rounding of large number Candyman Excel Worksheet Functions 5 August 18th 05 12:32 AM
Rounding numbers to the nearest 5 or 0 Fieldmedic Excel Worksheet Functions 3 July 17th 05 06:51 AM
Rounding LaraHubbs Excel Discussion (Misc queries) 2 June 21st 05 09:42 PM
Banker's Rounding - need help! Somecallmejosh Excel Discussion (Misc queries) 3 January 20th 05 09:53 PM
How do I make Excel stop rounding off my numbers that are 16 digi. Aida Excel Discussion (Misc queries) 1 December 6th 04 04:34 PM


All times are GMT +1. The time now is 10:41 AM.

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

About Us

"It's about Microsoft Excel"