#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 108
Default RoundUP

If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,316
Default RoundUP

Something along these lines might do the trick for you:

=IF(MOD(A1,0.5)=0,A1,A1+(0.05-MOD(A1,0.05)))
--
Kevin Backmann


"juanpablo" wrote:

If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,533
Default RoundUP

Hi

=CEILING(8.64,0.05)

Regards,
Per

"juanpablo" skrev i meddelelsen
...
If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,316
Default RoundUP

Disregard my previous post. I posted too quickly and did not fully check my
logic.

Sorry for the mishap...
--
Kevin Backmann


"juanpablo" wrote:

If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default RoundUP

=CEILING(A2,0.05)
--
David Biddulph

"juanpablo" wrote in message
...
If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default RoundUP

try

=CEILING(A1,0.05)

Mike

"juanpablo" wrote:

If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 108
Default RoundUP

Great thanks,
but to make world more complicated what is ceiling in spanish excel????



"David Biddulph" wrote:

=CEILING(A2,0.05)
--
David Biddulph

"juanpablo" wrote in message
...
If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?




  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default RoundUP

MULTIPLO.SUPERIOR

=MULTIPLO.SUPERIOR(A2;0;05)

or

=MULTIPLO.SUPERIOR(A2,0,05)


depending on what delimiter you are using


--


Regards,


Peo Sjoblom

"juanpablo" wrote in message
...
Great thanks,
but to make world more complicated what is ceiling in spanish excel????



"David Biddulph" wrote:

=CEILING(A2,0.05)
--
David Biddulph

"juanpablo" wrote in message
...
If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?






  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default RoundUP

http://dolf.trieschnigg.nl/excel/excel.html
http://www.mvps.org/dmcritchie/excel/language.htm
http://cherbe.free.fr/traduc_fonctions_xl97.html
--
David Biddulph

"juanpablo" wrote in message
...
Great thanks,
but to make world more complicated what is ceiling in spanish excel????



"David Biddulph" wrote:

=CEILING(A2,0.05)
--
David Biddulph

"juanpablo" wrote in message
...
If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?






  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 108
Default RoundUP

Thank you so much.

"Peo Sjoblom" wrote:

MULTIPLO.SUPERIOR

=MULTIPLO.SUPERIOR(A2;0;05)

or

=MULTIPLO.SUPERIOR(A2,0,05)


depending on what delimiter you are using


--


Regards,


Peo Sjoblom

"juanpablo" wrote in message
...
Great thanks,
but to make world more complicated what is ceiling in spanish excel????



"David Biddulph" wrote:

=CEILING(A2,0.05)
--
David Biddulph

"juanpablo" wrote in message
...
If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?








  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 108
Default RoundUP

Now if I have 7,1 it wont make it 7,15 why?

"Peo Sjoblom" wrote:

MULTIPLO.SUPERIOR

=MULTIPLO.SUPERIOR(A2;0;05)

or

=MULTIPLO.SUPERIOR(A2,0,05)


depending on what delimiter you are using


--


Regards,


Peo Sjoblom

"juanpablo" wrote in message
...
Great thanks,
but to make world more complicated what is ceiling in spanish excel????



"David Biddulph" wrote:

=CEILING(A2,0.05)
--
David Biddulph

"juanpablo" wrote in message
...
If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?






  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default RoundUP

Because you asked for it to round to the nearest 0.05 and the nearest
0.05 of 7.10 is 7.10. What do you want the result to be if the value is
7.17?
--


Regards,


Peo Sjoblom

"juanpablo" wrote in message
...
Now if I have 7,1 it wont make it 7,15 why?

"Peo Sjoblom" wrote:

MULTIPLO.SUPERIOR

=MULTIPLO.SUPERIOR(A2;0;05)

or

=MULTIPLO.SUPERIOR(A2,0,05)


depending on what delimiter you are using


--


Regards,


Peo Sjoblom

"juanpablo" wrote in message
...
Great thanks,
but to make world more complicated what is ceiling in spanish excel????



"David Biddulph" wrote:

=CEILING(A2,0.05)
--
David Biddulph

"juanpablo" wrote in message
...
If I have 8,64 and I need to round the number to 8,65?
Or if I have 3,21 and round the number to the nearest 5 to 3,25

How can be done?








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 in VBA Jeff Excel Discussion (Misc queries) 3 June 3rd 08 08:59 PM
=ROUNDUP(INT(0.xxx)) Dave F Excel Worksheet Functions 7 September 29th 06 08:28 PM
roundup by 16s Sum Limit and marking Excel Worksheet Functions 3 July 28th 06 03:23 PM
RoundUp help! fodman New Users to Excel 5 February 26th 06 03:25 PM
Trying To Roundup only if more than zero G33kman Excel Discussion (Misc queries) 2 November 29th 05 08:26 PM


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