Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() 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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() 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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() =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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Unwanted rounding of large number | Excel Worksheet Functions | |||
Rounding numbers to the nearest 5 or 0 | Excel Worksheet Functions | |||
Rounding | Excel Discussion (Misc queries) | |||
Banker's Rounding - need help! | Excel Discussion (Misc queries) | |||
How do I make Excel stop rounding off my numbers that are 16 digi. | Excel Discussion (Misc queries) |